File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,19 +23,19 @@ void main() async {
23
23
print ('\n Test Started' );
24
24
25
25
Mock response;
26
- response = await foo.get (x : 'string' , y: 123 , z: ['string in array' ]);
26
+ response = await foo.get (y: 123 , z: ['string in array' ]);
27
27
print (response.result);
28
28
29
- response = await foo.post (x : 'string' , y: 123 , z: ['string in array' ]);
29
+ response = await foo.post (y: 123 , z: ['string in array' ]);
30
30
print (response.result);
31
31
32
- response = await foo.put (x : 'string' , y: 123 , z: ['string in array' ]);
32
+ response = await foo.put (y: 123 , z: ['string in array' ]);
33
33
print (response.result);
34
34
35
- response = await foo.patch (x : 'string' , y: 123 , z: ['string in array' ]);
35
+ response = await foo.patch (y: 123 , z: ['string in array' ]);
36
36
print (response.result);
37
37
38
- response = await foo.delete (x : 'string' , y: 123 , z: ['string in array' ]);
38
+ response = await foo.delete (y: 123 , z: ['string in array' ]);
39
39
print (response.result);
40
40
41
41
// Bar Tests
You can’t perform that action at this time.
0 commit comments