Skip to content

Commit

Permalink
20201031 Build Fix 1
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanGibbs3 committed Oct 31, 2020
1 parent 4c147ea commit 9d72260
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/php/iauthTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function testreturnRoleNamesDropDownNone() {
}
public function testreturnRoleNamesDropDownAdmin() {
$user = self::$user;
$msg = '<option value="1" selected>Admin<\/option>';
$msg = "<option value='1' selected>Admin<\/option>";
$PHPUV = self::$PHPUV;
if ( $PHPUV > 1 ){ // PHPUnit 9+
$this->assertMatchesRegularExpression(
Expand All @@ -148,7 +148,7 @@ public function testreturnRoleNamesDropDownAdmin() {
}
public function testreturnRoleNamesDropDownUser() {
$user = self::$user;
$msg = '<option value="10" selected>user<\/option>';
$msg = "<option value='10' selected>user<\/option>";
$PHPUV = self::$PHPUV;
if ( $PHPUV > 1 ){ // PHPUnit 9+
$this->assertMatchesRegularExpression(
Expand All @@ -166,7 +166,7 @@ public function testreturnRoleNamesDropDownUser() {
}
public function testreturnRoleNamesDropDownAnonymous() {
$user = self::$user;
$msg = '<option value="10000" selected>anonymous<\/option>';
$msg = "<option value='10000' selected>anonymous<\/option>";
$PHPUV = self::$PHPUV;
if ( $PHPUV > 1 ){ // PHPUnit 9+
$this->assertMatchesRegularExpression(
Expand All @@ -184,7 +184,7 @@ public function testreturnRoleNamesDropDownAnonymous() {
}
public function testreturnRoleNamesDropDownAGEditor() {
$user = self::$user;
$msg = '<option value="50" selected>ag_editor<\/option>';
$msg = "<option value='50' selected>ag_editor<\/option>";
$PHPUV = self::$PHPUV;
if ( $PHPUV > 1 ){ // PHPUnit 9+
$this->assertMatchesRegularExpression(
Expand Down

0 comments on commit 9d72260

Please sign in to comment.