Explorar o código

Fixed bad usage of rstrip() that caused test failure.

If the temporary file name contained a p or y as its last
characters, it would be stripped. refs #23083.
Tim Graham %!s(int64=10) %!d(string=hai) anos
pai
achega
57d2b3f2a7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tests/utils_tests/test_autoreload.py

+ 1 - 1
tests/utils_tests/test_autoreload.py

@@ -90,7 +90,7 @@ class TestFilenameGenerator(TestCase):
         _, filepath = tempfile.mkstemp(dir=os.path.dirname(upath(__file__)), suffix='.py')
         try:
             _, filename = os.path.split(filepath)
-            import_module('.%s' % filename.rstrip('.py'), package='utils_tests')
+            import_module('.%s' % filename.replace('.py', ''), package='utils_tests')
             self.assertIn(filepath, gen_filenames())
         finally:
             os.remove(filepath)