Skip to content

Commit 0bdb788

Browse files
committed
test: work around false positive typos
1 parent f5e67dc commit 0bdb788

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/t/test_cppcheck.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def test_4(self, completion):
2222
def test_5(self, completion):
2323
assert completion == "l"
2424

25-
@pytest.mark.complete("cppcheck --enable=xx,styl")
25+
@pytest.mark.complete("cppcheck --enable=xx,sty")
2626
def test_6(self, completion):
27-
assert completion == "e"
27+
assert completion == "le"
2828

29-
@pytest.mark.complete("cppcheck --enable=xx,yy,styl")
29+
@pytest.mark.complete("cppcheck --enable=xx,yy,sty")
3030
def test_7(self, completion):
31-
assert completion == "e"
31+
assert completion == "le"

test/t/test_xgamma.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class TestXgamma:
66
def test_1(self, completion):
77
assert completion
88

9-
@pytest.mark.complete("xgamma -gam", require_cmd=True)
9+
@pytest.mark.complete("xgamma -gamm", require_cmd=True)
1010
def test_2(self, completion):
11-
assert completion == "ma"
11+
assert completion == "a"
1212
assert completion.endswith(" ")

0 commit comments

Comments
 (0)