Skip to content

Commit c01a56e

Browse files
committed
MAGETWO-43023: Review, Test, Stabilize builds
- fixed assertion in unit tests
1 parent fdc7dd6 commit c01a56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/api-functional/testsuite/Magento/Webapi/Routing/BaseService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function _assertNoRestRouteException($serviceInfo, $requestData = null
8383
$this->_webApiCall($serviceInfo, $requestData);
8484
} catch (\Exception $e) {
8585
$error = json_decode($e->getMessage(), true);
86-
$this->assertEquals('Request does not match any route . ', $error['message']);
86+
$this->assertEquals('Request does not match any route.', $error['message']);
8787
$this->assertEquals(WebapiException::HTTP_NOT_FOUND, $e->getCode());
8888
}
8989
}

0 commit comments

Comments
 (0)