This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 7859817661 fix: Change time range to fix test
timeOrderDataView.spec.ts (#3449)
7859817661 is described below
commit 7859817661beee6629f2de839388fa4c55c4b40e
Author: Philipp Zehnder <[email protected]>
AuthorDate: Mon Feb 3 08:23:43 2025 +0100
fix: Change time range to fix test timeOrderDataView.spec.ts (#3449)
---
ui/cypress/tests/datalake/timeOrderDataView.spec.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/cypress/tests/datalake/timeOrderDataView.spec.ts
b/ui/cypress/tests/datalake/timeOrderDataView.spec.ts
index a1d93c434f..4948be6ad1 100644
--- a/ui/cypress/tests/datalake/timeOrderDataView.spec.ts
+++ b/ui/cypress/tests/datalake/timeOrderDataView.spec.ts
@@ -28,8 +28,8 @@ describe('Test Time Order in Data Explorer', () => {
});
it('Perform Test with ascending and descending order', () => {
- const startDate = new Date(1653871499055);
- const endDate = new Date(1653871608093);
+ const startDate = new Date('2022-04-01T00:00:00Z');
+ const endDate = new Date('2022-07-01T23:59:59Z');
DataLakeUtils.clickOrderBy('descending');