Skip to content

Commit f3bcee1

Browse files
committed
test: Rename send signal test functons
Signed-off-by: Arkady Gilinsky <[email protected]>
1 parent 824e788 commit f3bcee1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def test_module_name(self) -> None:
717717
assert "Use 'coverage help' for help" in out
718718

719719
@pytest.mark.skipif(env.WINDOWS, reason="This test is not for Windows")
720-
def test_save_signal(self) -> None:
720+
def test_save_signal_usr1(self) -> None:
721721
test_file = "dummy_hello.py"
722722
self.assert_doesnt_exist(".coverage")
723723
self.make_file(test_file, """\
@@ -747,7 +747,7 @@ def test_save_signal(self) -> None:
747747

748748
# Negative test for signal
749749
@pytest.mark.skipif(env.WINDOWS, reason="This test is not for Windows")
750-
def test_save_signal_no_send(self) -> None:
750+
def test_save_signal_kill(self) -> None:
751751
test_file = "dummy_hello.py"
752752
self.assert_doesnt_exist(".coverage")
753753
self.make_file(test_file, """\

0 commit comments

Comments
 (0)