Skip to content
Snippets Groups Projects
Commit 7f174514 authored by Ismail Moumni's avatar Ismail Moumni
Browse files

errors corrected

parent 026d245a
No related branches found
No related tags found
1 merge request!7addding help function
Pipeline #1499 passed with stage
in 17 seconds
...@@ -54,10 +54,10 @@ data2 = { ...@@ -54,10 +54,10 @@ data2 = {
def test_missing_keys(): def test_missing_keys():
var = client.RdosClient.missing_keys(data1, data2) var = client.RdosClient.missing_keys(client.RdosClient, data1, data2)
assert not var assert not var
def test_bad_missing(): def test_bad_missing():
with pytest.raises(Exception): with pytest.raises(Exception):
assert client.RdosClient.missing_keys({}, data1) assert client.RdosClient.missing_keys(client.RdosClient, {}, data1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment