Skip to content

Commit a2a1ce4

Browse files
justinc1anazobec
authored andcommitted
Remove duplicted unittest
Signed-off-by: Justin Cinkelj <justin.cinkelj@xlab.si>
1 parent a8cb645 commit a2a1ce4

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

tests/unit/plugins/module_utils/test_rest_client.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,6 @@ def test_non_empty_response(self, client):
8686

8787
assert records == {"result": [{"a": 3, "b": "sys_id"}]}
8888

89-
def test_query_passing(self, client):
90-
client.get.return_value = Response(
91-
200, '{"result": []}', {"X-Total-Count": "0"}
92-
)
93-
t = rest_client.RestClient(client)
94-
95-
t.list_records_raw("my_table")
96-
97-
client.get.assert_called_once_with(
98-
path="my_table",
99-
timeout=None,
100-
)
101-
10289

10390
class TestTableGetRecord:
10491
def test_zero_matches(self, client):

0 commit comments

Comments
 (0)