File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def test_get_all(self):
34
34
"http://localhost:8000/api/{}/{}/" .format (
35
35
self .app , self .name .replace ("_" , "-" )
36
36
),
37
- params = {},
37
+ params = {"limit" : 0 },
38
38
json = None ,
39
39
headers = HEADERS ,
40
40
)
@@ -51,7 +51,7 @@ def test_filter(self):
51
51
"http://localhost:8000/api/{}/{}/" .format (
52
52
self .app , self .name .replace ("_" , "-" )
53
53
),
54
- params = {"name" : "test" },
54
+ params = {"name" : "test" , "limit" : 0 },
55
55
json = None ,
56
56
headers = HEADERS ,
57
57
)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def test_get_all(self):
35
35
"http://localhost:8000/api/{}/{}/" .format (
36
36
self .app , self .name .replace ("_" , "-" )
37
37
),
38
- params = {},
38
+ params = {"limit" : 0 },
39
39
json = None ,
40
40
headers = HEADERS ,
41
41
)
@@ -52,7 +52,7 @@ def test_filter(self):
52
52
"http://localhost:8000/api/{}/{}/" .format (
53
53
self .app , self .name .replace ("_" , "-" )
54
54
),
55
- params = {"name" : "test" },
55
+ params = {"name" : "test" , "limit" : 0 },
56
56
json = None ,
57
57
headers = HEADERS ,
58
58
)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def test_get_all(self):
35
35
"http://localhost:8000/api/{}/{}/" .format (
36
36
self .app , self .name .replace ("_" , "-" )
37
37
),
38
- params = {},
38
+ params = {"limit" : 0 },
39
39
json = None ,
40
40
headers = HEADERS ,
41
41
)
@@ -52,7 +52,7 @@ def test_filter(self):
52
52
"http://localhost:8000/api/{}/{}/" .format (
53
53
self .app , self .name .replace ("_" , "-" )
54
54
),
55
- params = {"name" : "test" },
55
+ params = {"name" : "test" , "limit" : 0 },
56
56
json = None ,
57
57
headers = HEADERS ,
58
58
)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def test_get_all(self):
35
35
"http://localhost:8000/api/{}/{}/" .format (
36
36
self .app , self .name .replace ("_" , "-" )
37
37
),
38
- params = {},
38
+ params = {"limit" : 0 },
39
39
json = None ,
40
40
headers = HEADERS ,
41
41
)
@@ -52,7 +52,7 @@ def test_filter(self):
52
52
"http://localhost:8000/api/{}/{}/" .format (
53
53
self .app , self .name .replace ("_" , "-" )
54
54
),
55
- params = {"name" : "test" },
55
+ params = {"name" : "test" , "limit" : 0 },
56
56
json = None ,
57
57
headers = HEADERS ,
58
58
)
You can’t perform that action at this time.
0 commit comments