Skip to content

Commit 8ce9a9a

Browse files
committed
Adding proper extension to the result file
1 parent cebb1ab commit 8ce9a9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/server/src/org/openqa/selenium/server/htmlrunner/HTMLLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public static int mainInt(String... args) throws Exception {
232232
boolean passed = true;
233233
for (String browser : browsers) {
234234
// Turns out that Windows doesn't like "*" in a path name
235-
File results = resultsPath.resolve(browser.substring(1) + ".results").toFile();
235+
File results = resultsPath.resolve(browser.substring(1) + ".results.html").toFile();
236236
String result = "FAILED";
237237

238238
try {

0 commit comments

Comments
 (0)