Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -31,7 +31,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 @@ -42,7 +42,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