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_curl.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/t/test_curl.py') diff --git a/test/t/test_curl.py b/test/t/test_curl.py index ebccca95..63e969f9 100644 --- a/test/t/test_curl.py +++ b/test/t/test_curl.py @@ -8,11 +8,11 @@ class TestCurl: @pytest.mark.complete("curl -o f", cwd="shared/default/foo.d") def test_2(self, completion): - assert completion == "foo" + assert completion == "oo" @pytest.mark.complete("curl -LRo f", cwd="shared/default/foo.d") def test_3(self, completion): - assert completion == "foo" + assert completion == "oo" @pytest.mark.complete("curl --o f") def test_4(self, completion): @@ -20,9 +20,9 @@ class TestCurl: @pytest.mark.complete("curl --data @", cwd="shared/default/foo.d") def test_data_atfile(self, completion): - assert completion == "@foo" + assert completion == "foo" @pytest.mark.complete("curl --data @foo.", cwd="shared/default") def test_data_atfile_dir(self, completion): - assert completion == "@foo.d/" + assert completion == "d/" assert not completion.endswith(" ") -- cgit v1.2.1