From 95623d39d6029ba78ec96ad5ea08e9ac12629b91 Mon Sep 17 00:00:00 2001 From: "Gabriel F. T. Gomes" Date: Mon, 3 Aug 2020 18:43:13 -0300 Subject: New upstream version 2.11 --- test/t/test_ccache.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/t/test_ccache.py') diff --git a/test/t/test_ccache.py b/test/t/test_ccache.py index 64620ef4..ef55d0d8 100644 --- a/test/t/test_ccache.py +++ b/test/t/test_ccache.py @@ -12,15 +12,15 @@ class TestCcache: @pytest.mark.complete("ccache stt") def test_3(self, completion): - assert "stty" in completion + assert completion == "y" or "stty" in completion @pytest.mark.complete("ccache --zero-stats stt") def test_4(self, completion): - assert "stty" in completion + assert completion == "y" or "stty" in completion @pytest.mark.complete("ccache --hel", require_cmd=True) def test_5(self, completion): - assert "--help" in completion + assert completion == "p" or "--help" in completion @pytest.mark.complete("ccache --zero-stats sh +") def test_6(self, completion): -- cgit v1.2.1