Skip to content

Commit 3c41ff0

Browse files
committed
fix flutter tests
1 parent 89be5db commit 3c41ff0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/languages/flutter/tests.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ void main() async {
2323
print('\nTest Started');
2424

2525
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']);
2727
print(response.result);
2828

29-
response = await foo.post(x: 'string', y: 123, z: ['string in array']);
29+
response = await foo.post(y: 123, z: ['string in array']);
3030
print(response.result);
3131

32-
response = await foo.put(x: 'string', y: 123, z: ['string in array']);
32+
response = await foo.put(y: 123, z: ['string in array']);
3333
print(response.result);
3434

35-
response = await foo.patch(x: 'string', y: 123, z: ['string in array']);
35+
response = await foo.patch(y: 123, z: ['string in array']);
3636
print(response.result);
3737

38-
response = await foo.delete(x: 'string', y: 123, z: ['string in array']);
38+
response = await foo.delete(y: 123, z: ['string in array']);
3939
print(response.result);
4040

4141
// Bar Tests

0 commit comments

Comments
 (0)