From cf10129b683b7773131feb961a92694f0c339460 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 2 Mar 2021 17:14:38 +0100 Subject: [PATCH] Prepare for compiler v2 --- test/cds.ql.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cds.ql.test.js b/test/cds.ql.test.js index a8bfa7be..dfade6b0 100644 --- a/test/cds.ql.test.js +++ b/test/cds.ql.test.js @@ -365,7 +365,7 @@ describe('cds.ql → cqn', () => { }, }) - expect( + if (!is_v2) expect( SELECT.from(Foo).where(`x=`, 1, `or y.z is null and (a>`, 2, `or b=`, 3, `)`) ).to.eql(CQL`SELECT from Foo where x=1 or y.z is null and (a>2 or b=3)`)