You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev/tests/api-functional/testsuite/Magento/GraphQl/Customer/IsEmailAvailableTest.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ public function testEmailAvailable()
50
50
51
51
/**
52
52
* @expectedException \Exception
53
-
* @expectedExceptionMessage GraphQL response contains errors: Email should be specified
53
+
* @expectedExceptionMessage GraphQL response contains errors: Email must be specified
54
54
*/
55
55
publicfunctiontestEmailAvailableEmptyValue()
56
56
{
@@ -62,12 +62,12 @@ public function testEmailAvailableEmptyValue()
62
62
}
63
63
}
64
64
QUERY;
65
-
$response = $this->graphQlQuery($query);
65
+
$this->graphQlQuery($query);
66
66
}
67
67
68
68
/**
69
69
* @expectedException \Exception
70
-
* @expectedExceptionMessage GraphQL response contains errors: Field "isEmailAvailable" argument "email" of type "String!" is required but not provided.
70
+
* @expectedExceptionMessage Field "isEmailAvailable" argument "email" of type "String!" is required
71
71
*/
72
72
publicfunctiontestEmailAvailableMissingValue()
73
73
{
@@ -79,7 +79,7 @@ public function testEmailAvailableMissingValue()
79
79
}
80
80
}
81
81
QUERY;
82
-
$response = $this->graphQlQuery($query);
82
+
$this->graphQlQuery($query);
83
83
}
84
84
85
85
/**
@@ -96,6 +96,6 @@ public function testEmailAvailableInvalidValue()
0 commit comments