From e010ced66331dac9320c959ae9be085608702d67 Mon Sep 17 00:00:00 2001 From: Krishnan Govindraj Date: Tue, 11 Aug 2026 22:28:24 +0200 Subject: [PATCH] Enable test --- query/language/expression.feature | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/query/language/expression.feature b/query/language/expression.feature index 5aeaf75d..ebe5583e 100644 --- a/query/language/expression.feature +++ b/query/language/expression.feature @@ -217,10 +217,8 @@ Feature: TypeQL Query with Expressions Given transaction closes # Non-cyclic query, just inverted dependencies in two branches. - # TODO: This is legal, but currently fails because our validation is too coarse. - # The validation introduced in #7900 is finer and permits this. Given connection open read transaction for database: typedb - Then typeql read query; fails with a message containing: "illegal circular expression assignment & usage" + When get answers of typeql read query """ match { let $x = 5; let $y = $x; } or @@ -228,7 +226,7 @@ Feature: TypeQL Query with Expressions select $x, $y; """ - #Then verify answer size is: 2 + Then answer size is: 2 Given transaction closes