File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
dev/tests/unit/Magento/FunctionalTestFramework/Test/Util
src/Magento/FunctionalTestingFramework/Test/Util Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ public function setUp()
28
28
*/
29
29
public function testEmptyStepKey ()
30
30
{
31
- $ this ->expectExceptionMessage ("StepKeys cannot be empty. Action='sampleAction' in filename.xml " );
31
+ $ this ->expectExceptionMessage (
32
+ "StepKeys cannot be empty. Action='sampleAction' in Action Group filename.xml "
33
+ );
32
34
$ this ->testActionGroupObjectExtractor ->extractActionGroup ($ this ->createBasicActionObjectArray ("" ));
33
35
}
34
36
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public function extractActionGroup($actionGroupData)
65
65
try {
66
66
$ actions = $ this ->actionObjectExtractor ->extractActions ($ actionData );
67
67
} catch (\Exception $ error ) {
68
- throw new XmlException ($ error ->getMessage () . " in " . $ actionGroupData [self ::FILENAME ]);
68
+ throw new XmlException ($ error ->getMessage () . " in Action Group " . $ actionGroupData [self ::FILENAME ]);
69
69
}
70
70
71
71
if (array_key_exists (self ::ACTION_GROUP_ARGUMENTS , $ actionGroupData )) {
You can’t perform that action at this time.
0 commit comments