File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
dev/tests/integration/testsuite/Magento/Config/Console/Command Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public function validate($path)
39
39
$ allPaths = $ this ->structure ->getFieldPaths ();
40
40
41
41
if (!array_key_exists ($ path , $ allPaths )) {
42
- throw new ValidatorException (__ ('The "%1" path does not exists ' , $ path ));
42
+ throw new ValidatorException (__ ('The "%1" path does not exist ' , $ path ));
43
43
}
44
44
45
45
return true ;
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public function testValidate()
55
55
56
56
/**
57
57
* @expectedException \Magento\Framework\Exception\ValidatorException
58
- * @expectedExceptionMessage The "test/test/test" path does not exists
58
+ * @expectedExceptionMessage The "test/test/test" path does not exist
59
59
*/
60
60
public function testValidateWithException ()
61
61
{
Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ function (Mock $output) {
521
521
function (Mock $ output ) {
522
522
$ output ->expects ($ this ->once ())
523
523
->method ('writeln ' )
524
- ->with ('<error>The "test/test/test" path does not exists </error> ' );
524
+ ->with ('<error>The "test/test/test" path does not exist </error> ' );
525
525
},
526
526
'test/test/test ' ,
527
527
'value ' ,
You can’t perform that action at this time.
0 commit comments