Compare commits

...

3 Commits

Author SHA1 Message Date
DavIvek
ee9bf3e012 run gql_behave tests on mystique 2024-01-10 15:18:20 +01:00
DavIvek
79eec4f872 Merge branch 'master' into fix-toboolean-test 2024-01-10 11:50:59 +01:00
DavIvek
6ea841ad51 rename one of the tests that share the same name 2024-01-08 21:02:39 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -215,7 +215,7 @@ jobs:
release_build:
name: "Release build"
runs-on: [self-hosted, Linux, X64, Diff]
runs-on: [self-hosted, Linux, X64, mystique]
env:
THREADS: 24
MEMGRAPH_ENTERPRISE_LICENSE: ${{ secrets.MEMGRAPH_ENTERPRISE_LICENSE }}

View File

@@ -64,7 +64,7 @@ Feature: Functions
Given an empty graph
And having executed
"""
CREATE (:Node {prop: ToBoolean("t")});
CREATE (:Node {prop: TOBOOLEAN("t")});
"""
When executing query:
"""
@@ -74,11 +74,11 @@ Feature: Functions
| n.prop |
| true |
Scenario: ToBoolean test 03:
Scenario: ToBoolean test 04:
Given an empty graph
And having executed
"""
CREATE (:Node {prop: ToBoolean("f")});
CREATE (:Node {prop: TOBOOLEAN("f")});
"""
When executing query:
"""