cypress_test/integration_tests/common/helper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 3b500642d479a1c1d6f4f8ff6969294138466df8 Author: Tamás Zolnai <[email protected]> AuthorDate: Thu Feb 13 18:03:58 2020 +0100 Commit: Tamás Zolnai <[email protected]> CommitDate: Thu Feb 13 18:53:34 2020 +0100 cypress: Fix build failure related to field insertion. Use en-US locale. In the tests of date / time fields the date format contains the locale, which was set to en-US originally. Change-Id: Ida56dd8a3e64b0c81d70d010f3aabf40da7d73a0 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/88620 Tested-by: Tamás Zolnai <[email protected]> Reviewed-by: Tamás Zolnai <[email protected]> diff --git a/cypress_test/integration_tests/common/helper.js b/cypress_test/integration_tests/common/helper.js index 56b5d0182..8a8afeb84 100644 --- a/cypress_test/integration_tests/common/helper.js +++ b/cypress_test/integration_tests/common/helper.js @@ -25,12 +25,12 @@ function loadTestDoc(fileName, subFolder, mobile) { if (subFolder === undefined) { URI = 'http://localhost:9980/loleaflet/' + Cypress.env('WSD_VERSION_HASH') + - '/loleaflet.html?lang=en&file_path=file://' + + '/loleaflet.html?lang=en-US&file_path=file://' + Cypress.env('WORKDIR') + fileName; } else { URI = 'http://localhost:9980/loleaflet/' + Cypress.env('WSD_VERSION_HASH') + - '/loleaflet.html?lang=en&file_path=file://' + + '/loleaflet.html?lang=en-US&file_path=file://' + Cypress.env('WORKDIR') + subFolder + '/' + fileName; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
