diff options
author | wei <> | 2006-01-22 00:39:06 +0000 |
---|---|---|
committer | wei <> | 2006-01-22 00:39:06 +0000 |
commit | d4b3de52d0a0a2d394bf4763984029972b5131b1 (patch) | |
tree | 05ff61f74c64cc0ec8b2303cda01f5e133152c41 /tests | |
parent | 999703f2e33ea21e56d0f6a569be7cd95f615847 (diff) |
fixed typo.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/FunctionalTests/protected/pages/Validation/CheckBox.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php index 0a742abe..7eba9317 100644 --- a/tests/FunctionalTests/protected/pages/Validation/CheckBox.php +++ b/tests/FunctionalTests/protected/pages/Validation/CheckBox.php @@ -29,9 +29,9 @@ class CheckBoxTestCase extends SeleniumTestCase //write some text, and see what it
$this->type('ctl0_Content_TextBox', "hello");
$this->pause(100);
- $this->assertNotVisibe("ctl0_Content_validator1");
+ $this->assertNotVisible("ctl0_Content_validator1");
$this->clickAndWait("ctl0_Content_checkbox2"); //submit
- $this->assertNotVisibe("ctl0_Content_validator1");
+ $this->assertNotVisible("ctl0_Content_validator1");
}
}
|