Skip to content

Commit

Permalink
Fixed an issue where page source files where generated unnecessarily
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Sep 15, 2023
1 parent ba964bd commit a1db47b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public SoundEngineer ifRequiredForResult(TestResult result) {
} else if (storeHTML == ALWAYS) {
recordPageSource = true;
} else {
recordPageSource = (result == TestResult.FAILURE || result == TestResult.ERROR || result == TestResult.UNDEFINED);
recordPageSource = (result == TestResult.FAILURE || result == TestResult.ERROR);
}
return this;
}
Expand Down

0 comments on commit a1db47b

Please sign in to comment.