Skip to content

Commit

Permalink
Correct IgnoreComparatorUnitTest name (SeleniumHQ#3535)
Browse files Browse the repository at this point in the history
  • Loading branch information
asashour authored and shs96c committed Feb 23, 2017
1 parent 8c03df6 commit eecfd64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions java/client/test/org/openqa/selenium/SmallTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.openqa.selenium.net.NetworkUtilsTest;
import org.openqa.selenium.os.CommandLineTest;
import org.openqa.selenium.os.WindowsUtilsUnitTest;
import org.openqa.selenium.testing.drivers.IgnoreComparitorUnitTest;
import org.openqa.selenium.testing.drivers.IgnoreComparatorUnitTest;

@RunWith(Suite.class)
@Suite.SuiteClasses({
Expand All @@ -40,7 +40,7 @@
CompositeActionTest.class,
DimensionTest.class,
FileHandlerTest.class,
IgnoreComparitorUnitTest.class,
IgnoreComparatorUnitTest.class,
IndividualKeyboardActionsTest.class,
IndividualMouseActionsTest.class,
KeysTest.class,
Expand Down
2 changes: 1 addition & 1 deletion java/client/test/org/openqa/selenium/testing/drivers/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export_file(name = 'firebug',

java_library(name = 'small-tests',
srcs = [
'IgnoreComparitorUnitTest.java',
'IgnoreComparatorUnitTest.java',
],
deps = [
':drivers',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import java.util.Set;

@RunWith(JUnit4.class)
public class IgnoreComparitorUnitTest {
public class IgnoreComparatorUnitTest {

private static final Platform CURRENT_PLATFORM = Platform.MAC;
private static final Platform OTHER_PLATFORM = Platform.WINDOWS;
Expand Down

0 comments on commit eecfd64

Please sign in to comment.