We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad91ec commit 53f624fCopy full SHA for 53f624f
test/t/test_tshark.py
@@ -13,9 +13,8 @@ def test_2(self, completion):
13
14
@pytest.mark.complete("tshark -O foo,htt", require_cmd=True)
15
def test_3(self, completion):
16
- # When there's only one completion, it's be the one with "foo," prefix;
17
- # when multiple (e.g. http and http2), it's the completion alone.
18
- assert completion == "foo,http" or "http" in completion
+ # p: one completion only; http: e.g. http and http2
+ assert completion == "p" or "http" in completion
19
20
@pytest.mark.complete("tshark -o tcp", require_cmd=True)
21
def test_4(self, completion):
0 commit comments