Skip to content

Commit

Permalink
integration test fix for 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
coronabytes committed Nov 29, 2023
1 parent 77fdaaa commit 8f779bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- 8.x
arango:
- "arangodb:3.11"
- "arangodb:3.10"
# - "arangodb:3.10"
# - "arangodb/enterprise:3.9"
topology:
- single
Expand Down
4 changes: 2 additions & 2 deletions Core.Arango.Tests/TransactionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public async Task StreamTransactionQuery(string serializer)

Assert.NotNull(exception.ErrorNumber);
Assert.NotNull(exception.Code);
Assert.Equal(ArangoErrorCode.ErrorTransactionNotFound, exception.ErrorNumber);
Assert.Equal(ArangoErrorCode.ErrorTransactionAborted, exception.ErrorNumber);
Assert.Equal(HttpStatusCode.NotFound, exception.Code);
}

Expand Down Expand Up @@ -175,7 +175,7 @@ await Arango.Document.CreateManyAsync(t2, "test",

Assert.NotNull(exception.ErrorNumber);
Assert.NotNull(exception.Code);
Assert.Equal(ArangoErrorCode.ErrorTransactionNotFound, exception.ErrorNumber);
Assert.Equal(ArangoErrorCode.ErrorTransactionAborted, exception.ErrorNumber);
Assert.Equal(HttpStatusCode.NotFound, exception.Code);
}
}
Expand Down

0 comments on commit 8f779bf

Please sign in to comment.