Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
Some minor adjustments for better understanding
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopaul authored and slu-it committed Jan 4, 2017
1 parent 7dbe8fd commit ee1aaa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public final void testValidationOfMapping_multiSelect() {

@Test(expected = WrongElementClassException.class)
public final void testValidationOfClass_noSelect() {
assertPageObjectCanBeInitialized(page.noSelect);
assertPageObjectCanBeInitialized(page.notASelect);
}

/* utilities */
Expand All @@ -122,8 +122,8 @@ private static class GenericSelectTestPage extends PageObject{
@IdentifyUsing("emptySelect")
GenericSelect emptySelect;

@IdentifyUsing("noSelect")
GenericSelect noSelect;
@IdentifyUsing("notASelect")
GenericSelect notASelect;

}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h3>This page contains elements for testing the functionality of the GenericSele
</tr>
<tr>
<td>A non select</td>
<td><span id="noSelect">This is not a Select</span></td>
<td><span id="notASelect">This is not a Select</span></td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit ee1aaa6

Please sign in to comment.