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

cwylie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new c1c2104bd6 fix ordering in e2e test (#12775)
c1c2104bd6 is described below

commit c1c2104bd6f258b1b1386e3c6006d4ca56c5846d
Author: Vadim Ogievetsky <[email protected]>
AuthorDate: Wed Jul 13 15:08:00 2022 -0700

    fix ordering in e2e test (#12775)
---
 web-console/e2e-tests/tutorial-batch.spec.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/web-console/e2e-tests/tutorial-batch.spec.ts 
b/web-console/e2e-tests/tutorial-batch.spec.ts
index 32ff73c83e..9420f74def 100644
--- a/web-console/e2e-tests/tutorial-batch.spec.ts
+++ b/web-console/e2e-tests/tutorial-batch.spec.ts
@@ -173,14 +173,12 @@ async function validateQuery(page: playwright.Page, 
datasourceName: string) {
   expect(results.length).toBeGreaterThan(0);
   expect(results[0]).toStrictEqual([
     /* __time */ '2015-09-12T00:46:58.772Z',
-    /* added */ '36',
+    /* time */ '2015-09-12T00:46:58.771Z',
     /* channel */ '#en.wikipedia',
     /* cityName */ 'null',
     /* comment */ 'added project',
     /* countryIsoCode */ 'null',
     /* countryName */ 'null',
-    /* deleted */ '0',
-    /* delta */ '36',
     /* isAnonymous */ 'false',
     /* isMinor */ 'false',
     /* isNew */ 'false',
@@ -191,7 +189,9 @@ async function validateQuery(page: playwright.Page, 
datasourceName: string) {
     /* page */ 'Talk:Oswald Tilghman',
     /* regionIsoCode */ 'null',
     /* regionName */ 'null',
-    /* time */ '2015-09-12T00:46:58.771Z',
     /* user */ 'GELongstreet',
+    /* added */ '36',
+    /* delta */ '36',
+    /* deleted */ '0',
   ]);
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to