From 2608394eea4d28754ac9e44d050a6657c99f6396 Mon Sep 17 00:00:00 2001 From: jtyoung84 <104453205+jtyoung84@users.noreply.github.com> Date: Wed, 8 May 2024 10:58:20 -0700 Subject: [PATCH] feat: updates test example --- tests/test_data_name_patterns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_data_name_patterns.py b/tests/test_data_name_patterns.py index 0d6893d..1b475b9 100644 --- a/tests/test_data_name_patterns.py +++ b/tests/test_data_name_patterns.py @@ -43,7 +43,7 @@ def test_patterns_success(self): data = "ecephys_2020-10-19_08-30-59" raw = "ecephys_123455_2020-10-19_08-30-59" derived = "ecephys_123455_2020-10-19_08-30-59_sorted_2020-11-21_09-31-58" - analyzed = "ecephys_123455_2020-10-19_08-30-59_sorted_2020-11-21_09-31-58" + analyzed = "project_analysis_3033-12-21_04-22-11" no_underscores = "abc-123" no_special_chars = "abc-123" no_special_chars_except_space = "abc efg - 123" @@ -62,7 +62,7 @@ def test_patterns_fail(self): malformed_data = "ecephys_2020-10-19_08:30:59" malformed_raw = "ecephys_123455_2020-10-19_08-30-59_test" malformed_derived = "ecephys_123455_2020-10-19_08-30-59_sorted_2020-11-21_09:31:58" - malformed_analyzed = "ecephys_123455_2020-10-19_08-30-59_sorted_2020-11-21_09-31-58_test" + malformed_analyzed = "project_analysis_3033-12-21_04-22-11_test" malformed_no_underscores = "abc_123" malformed_no_special_chars = "abc-123" malformed_no_special_chars_except_space = "abc efg - 123 "