@@ -381,8 +381,10 @@ public function testSearchWithFilterWithPageSizeEqualTotalCount()
381381}
382382QUERY ;
383383 $ 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+ );
386388 $ this ->graphQlQuery ($ query );
387389 }
388390
@@ -1043,8 +1045,10 @@ public function testQueryPageOutOfBoundException()
10431045QUERY ;
10441046
10451047 $ 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+ );
10481052 $ this ->graphQlQuery ($ query );
10491053 }
10501054
@@ -1075,8 +1079,10 @@ public function testQueryWithNoSearchOrFilterArgumentException()
10751079QUERY ;
10761080
10771081 $ 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+ );
10801086 $ this ->graphQlQuery ($ query );
10811087 }
10821088
0 commit comments