diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_cmdline.py | 2 | ||||
-rw-r--r-- | tests/test_debug.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index b12f92ea..a4d01880 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -232,7 +232,7 @@ class CmdLineTest(BaseCmdLineTest): self.command_line("debug sys") out = self.stdout() self.assertIn("version:", out) - self.assertIn("data_path:", out) + self.assertIn("data_file:", out) def test_debug_config(self): self.command_line("debug config") diff --git a/tests/test_debug.py b/tests/test_debug.py index c47dd343..26ddc0df 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -168,8 +168,8 @@ class DebugTraceTest(CoverageTest): labels = """ version coverage cover_paths pylib_paths tracer configs_attempted config_file - configs_read data_path python platform implementation executable - cwd path environment command_line cover_match pylib_match + configs_read data_file python platform implementation executable + pid cwd path environment command_line cover_match pylib_match """.split() for label in labels: label_pat = r"^\s*%s: " % label |