From 940f95426b61e727ab51233f3382755ef7377ae7 Mon Sep 17 00:00:00 2001 From: Spencer Young Date: Fri, 3 Apr 2020 21:55:15 -0700 Subject: [PATCH] new filename now matches --- tests/test_cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 00c1fa3..3b1e4c2 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -214,7 +214,8 @@ class CommandLineTestCase(unittest.TestCase): ' - \'**/utf-8\'\n') self.assertEqual( sorted(cli.find_files_recursively([self.wd], conf)), - [os.path.join(self.wd, 'non-ascii/éçäγλνπ¥/utf-8')] + [os.path.join(self.wd, 'non-ascii/utf-8'), + os.path.join(self.wd, 'non-ascii/éçäγλνπ¥/utf-8')] ) def test_run_with_bad_arguments(self):