File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,18 @@ public function testCallToResolveDontFail()
7070 self ::assertTrue ($ result ->resolve ());
7171 }
7272
73- public function testCreateFailling ()
73+ public function testCreateFailing ()
7474 {
7575 $ result = ResultMockFactory::createFailing (Result::class, 400 , 'Boom ' );
7676
7777 $ this ->expectException (ClientException::class);
7878 $ this ->expectExceptionCode (400 );
79- $ this ->expectExceptionMessageRegExp ('@HTTP 400 returned for "http://localhost/".*Boom@sm ' );
79+ $ this ->expectExceptionMessageMatches ('@HTTP 400 returned for "http://localhost/".*Boom@sm ' );
8080
8181 $ result ->resolve ();
8282 }
8383
84- public function testCreateFaillingWithAdditionalTypeContent ()
84+ public function testCreateFailingWithAdditionalTypeContent ()
8585 {
8686 $ result = ResultMockFactory::createFailing (
8787 Result::class,
You can’t perform that action at this time.
0 commit comments