diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-25 19:25:03 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-26 10:37:07 -0400 |
commit | 8295f50fa3dfebb12b94f9745385a3227ec7d53c (patch) | |
tree | 3c1cc598b0817bf5c1773fd237db8e81d05bd12a /tests/test_cmdline.py | |
parent | 15618a42862eac786fd21e02943600899cd5c0af (diff) | |
download | python-coveragepy-git-8295f50fa3dfebb12b94f9745385a3227ec7d53c.tar.gz |
Better sys_info: pid, and a more understandable name.
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 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") |