Skip to content

Commit

Permalink
Removed dontSeeCheckboxIsChecked parameter type declaration
Browse files Browse the repository at this point in the history
to permit arrays
  • Loading branch information
Naktibalda committed Apr 9, 2022
1 parent 92141f1 commit 54cbd32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"codeception/codeception": "^5.0.0-alpha3",
"codeception/lib-web": "^1.0",
"codeception/codeception": "^5.0.0-RC2",
"codeception/lib-web": "^1.0.1",
"codeception/stub": "^4.0",
"php-webdriver/webdriver": "^1.8.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/WebDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ public function seeCheckboxIsChecked($checkbox): void
$this->assertTrue($this->findField($checkbox)->isSelected());
}

public function dontSeeCheckboxIsChecked(string $checkbox): void
public function dontSeeCheckboxIsChecked($checkbox): void
{
$this->assertFalse($this->findField($checkbox)->isSelected());
}
Expand Down

0 comments on commit 54cbd32

Please sign in to comment.