aboutsummaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@gmail.com>2017-08-07 10:09:29 +0300
committerGitHub <noreply@github.com>2017-08-07 10:09:29 +0300
commite38ea94b9957280c5cc38daec392faa2ab81e100 (patch)
treed7af8de30c4ea70607e379a81ad9edd7fa46e093 /uitest
parent583fa0c0edc173495bb8566cefcb142eab7b7cdd (diff)
downloadvaadin-framework-e38ea94b9957280c5cc38daec392faa2ab81e100.tar.gz
vaadin-framework-e38ea94b9957280c5cc38daec392faa2ab81e100.zip
Fix typos in Javadoc of AbstractTB3Test (#9781)
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
index 5f02282a51..5985420c93 100644
--- a/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
+++ b/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
@@ -309,7 +309,7 @@ public abstract class AbstractTB3Test extends ParallelTest {
/**
* Used to determine what port the test is running on
*
- * @return The port teh test is running on, by default 8888
+ * @return The port the test is running on, by default 8888
*/
protected abstract int getDeploymentPort();
@@ -1112,7 +1112,7 @@ public abstract class AbstractTB3Test extends ParallelTest {
* Asserts that an element is present
*
* @param by
- * the locatore for the element
+ * the locator for the element
*/
protected void assertElementPresent(By by) {
Assert.assertTrue("Element is not present", isElementPresent(by));
@@ -1122,7 +1122,7 @@ public abstract class AbstractTB3Test extends ParallelTest {
* Asserts that an element is not present
*
* @param by
- * the locatore for the element
+ * the locator for the element
*/
protected void assertElementNotPresent(By by) {
Assert.assertFalse("Element is present", isElementPresent(by));