This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch hotfix-time-order-data-view-test
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit d56b8b0d37cdc8f12f0663d67feb8e6481c14158
Author: Philipp Zehnder <[email protected]>
AuthorDate: Fri Jan 31 09:40:53 2025 +0100

    fix: Change time range to fix test timeOrderDataView.spec.ts
---
 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');
 

Reply via email to