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 authored Apr 9, 2022
1 parent 9de9a33 commit 91e35c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lib/Interfaces/Web.php
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public function seeCheckboxIsChecked($checkbox): void;
* $I->seeCheckboxIsChecked('#signup_form input[type=checkbox]'); // I suppose user didn't check the first checkbox in form.
* ```
*/
public function dontSeeCheckboxIsChecked(string $checkbox): void;
public function dontSeeCheckboxIsChecked($checkbox): void;

/**
* Checks that the given input field or textarea *equals* (i.e. not just contains) the given value.
Expand Down

0 comments on commit 91e35c5

Please sign in to comment.