@@ -381,8 +381,10 @@ public function testSearchWithFilterWithPageSizeEqualTotalCount()
381
381
}
382
382
QUERY ;
383
383
$ this ->expectException (\Exception::class);
384
- $ this ->expectExceptionMessage ('GraphQL response contains errors: currentPage value 2 specified is greater ' .
385
- 'than the 1 page(s) available ' );
384
+ $ this ->expectExceptionMessage (
385
+ 'GraphQL response contains errors: currentPage value 2 specified is greater ' .
386
+ 'than the 1 page(s) available '
387
+ );
386
388
$ this ->graphQlQuery ($ query );
387
389
}
388
390
@@ -1043,8 +1045,10 @@ public function testQueryPageOutOfBoundException()
1043
1045
QUERY ;
1044
1046
1045
1047
$ this ->expectException (\Exception::class);
1046
- $ this ->expectExceptionMessage ('GraphQL response contains errors: currentPage value 2 specified is greater ' .
1047
- 'than the 1 page(s) available. ' );
1048
+ $ this ->expectExceptionMessage (
1049
+ 'GraphQL response contains errors: currentPage value 2 specified is greater ' .
1050
+ 'than the 1 page(s) available. '
1051
+ );
1048
1052
$ this ->graphQlQuery ($ query );
1049
1053
}
1050
1054
@@ -1075,8 +1079,10 @@ public function testQueryWithNoSearchOrFilterArgumentException()
1075
1079
QUERY ;
1076
1080
1077
1081
$ this ->expectException (\Exception::class);
1078
- $ this ->expectExceptionMessage ('GraphQL response contains errors: \'search \' or \'filter \' input argument is ' .
1079
- 'required. ' );
1082
+ $ this ->expectExceptionMessage (
1083
+ 'GraphQL response contains errors: \'search \' or \'filter \' input argument is ' .
1084
+ 'required. '
1085
+ );
1080
1086
$ this ->graphQlQuery ($ query );
1081
1087
}
1082
1088
0 commit comments