Skip to content

Commit 790a95b

Browse files
committed
more ie leftovers
1 parent c2ef1a5 commit 790a95b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/htmlunit/WebDriverTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
* The file could contain some properties:
121121
* <ul>
122122
* <li>browsers: is a comma separated list contains any combination of "hu" (for HtmlUnit with all browser versions),
123-
* "hu-ie", "hu-ff-esr", "ff", "ie", "chrome", which will be used to drive real browsers</li>
123+
* "hu-ff", "hu-ff-esr", "ff", "chrome", which will be used to drive real browsers</li>
124124
*
125125
* <li>chrome.bin (mandatory if it does not exist in the <i>path</i>): is the location of the ChromeDriver binary (see
126126
* <a href="http://chromedriver.storage.googleapis.com/index.html">Chrome Driver downloads</a>)</li>

src/test/java/org/htmlunit/junit/TestCaseCorrector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ else if (browserSet.size() > 1) {
216216
}
217217
}
218218
else {
219-
final List<String> allBrowsers = new ArrayList<>(Arrays.asList("CHROME", "EDGE", "FF", "FF_ESR", "IE"));
219+
final List<String> allBrowsers = new ArrayList<>(Arrays.asList("CHROME", "EDGE", "FF", "FF_ESR"));
220220
for (final Iterator<String> it = allBrowsers.iterator(); it.hasNext();) {
221221
if (it.next().equals(browserString)) {
222222
it.remove();

0 commit comments

Comments
 (0)