Skip to content

Commit 54cbd32

Browse files
committed
Removed dontSeeCheckboxIsChecked parameter type declaration
to permit arrays
1 parent 92141f1 commit 54cbd32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"php": "^8.0",
2323
"ext-json": "*",
2424
"ext-mbstring": "*",
25-
"codeception/codeception": "^5.0.0-alpha3",
26-
"codeception/lib-web": "^1.0",
25+
"codeception/codeception": "^5.0.0-RC2",
26+
"codeception/lib-web": "^1.0.1",
2727
"codeception/stub": "^4.0",
2828
"php-webdriver/webdriver": "^1.8.0"
2929
},

src/Codeception/Module/WebDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1422,7 +1422,7 @@ public function seeCheckboxIsChecked($checkbox): void
14221422
$this->assertTrue($this->findField($checkbox)->isSelected());
14231423
}
14241424

1425-
public function dontSeeCheckboxIsChecked(string $checkbox): void
1425+
public function dontSeeCheckboxIsChecked($checkbox): void
14261426
{
14271427
$this->assertFalse($this->findField($checkbox)->isSelected());
14281428
}

0 commit comments

Comments
 (0)