Skip to content

Commit a50f201

Browse files
akinomyogascop
authored andcommitted
test(chflags): fix test names
1 parent 8b65327 commit a50f201

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/t/test_chflags.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ def test_basic(self, completion):
77
assert completion
88

99
@pytest.mark.complete("chflags -")
10-
def test_basic(self, completion):
10+
def test_options(self, completion):
1111
assert completion and "-P" not in completion
1212

1313
@pytest.mark.complete("chflags -R -")
14-
def test_basic(self, completion):
14+
def test_options_after_R(self, completion):
1515
assert "-P" in completion
1616

1717
@pytest.mark.complete("chflags -v sappend ")
18-
def test_basic(self, completion):
18+
def test_first_word(self, completion):
1919
assert completion
20-

0 commit comments

Comments
 (0)