Skip to content

Commit 3dc32bf

Browse files
committed
create dataverse correctly
1 parent 26d2f40 commit 3dc32bf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/functional-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ jobs:
181181
182182
- name: Create test dataverse for scope-level queries
183183
run: |
184-
echo "Creating test dataverse testdb.testscope for scope-level functional tests"
184+
echo "Creating test dataverse 'testscope' (under Default database) for scope-level functional tests"
185185
curl -sS -k -u "${CBDINO_USER}:${CBDINO_PASS}" \
186186
-H "Content-Type: application/json" \
187-
-d '{"statement": "CREATE DATAVERSE testdb.testscope IF NOT EXISTS;"}' \
187+
-d '{"statement": "CREATE DATAVERSE testscope IF NOT EXISTS;"}' \
188188
"${CBDINO_CONNSTR}/api/v1/request"
189189
echo ""
190190
echo "Dataverse created successfully"

tests/Couchbase.Analytics.FunctionalTests/Fixtures/FixtureSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class FixtureSettings
3838
public string? ClientKeyPath2 { get; set; }
3939

4040
[JsonPropertyName("TestDatabase")]
41-
public string TestDatabase { get; set; } = "testdb";
41+
public string TestDatabase { get; set; } = "Default";
4242

4343
[JsonPropertyName("TestScope")]
4444
public string TestScope { get; set; } = "testscope";

0 commit comments

Comments
 (0)