Skip to content

Commit

Permalink
leave encoding for testcase ecrf.xls untouched
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Apr 6, 2024
1 parent ac2e0f7 commit fcbbb30
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
public class EcrfDataEntryTest extends SeleniumTestBase implements ProcessorJobOutput {

private final static String ECRF_FILE = "ecrfs.xls";
private final static String ECRF_FILE_ENCODING = null;
private String departmentPassword;
private DepartmentVO department;
private String userName;
Expand Down Expand Up @@ -102,7 +103,7 @@ public void test_03_import_ecrf_setup_job() throws Throwable {
if (waitForAddOperationSuccessful("tabView:trialjob_form")) {
if (waitForJobSuccessful("tabView:trialjob_form", 60l, 5l)) {
info("loading eCRF validation test data from " + getResourceFilePath(ECRF_FILE));
getXlsImporter().loadEcrfValidationVectors(getResourceFilePath(ECRF_FILE), trial.getId());
getXlsImporter().loadEcrfValidationVectors(getResourceFilePath(ECRF_FILE), ECRF_FILE_ENCODING, trial.getId());
return;
}
}
Expand Down

0 comments on commit fcbbb30

Please sign in to comment.