Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
coronabytes committed Nov 29, 2023
1 parent 8f779bf commit c9faa25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core.Arango.Tests/TransactionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public async Task StreamTransactionQuery(string serializer)
Assert.NotNull(exception.ErrorNumber);
Assert.NotNull(exception.Code);
Assert.Equal(ArangoErrorCode.ErrorTransactionAborted, exception.ErrorNumber);
Assert.Equal(HttpStatusCode.NotFound, exception.Code);
Assert.Equal(HttpStatusCode.Gone, exception.Code);
}

[Theory]
Expand Down Expand Up @@ -176,7 +176,7 @@ await Arango.Document.CreateManyAsync(t2, "test",
Assert.NotNull(exception.ErrorNumber);
Assert.NotNull(exception.Code);
Assert.Equal(ArangoErrorCode.ErrorTransactionAborted, exception.ErrorNumber);
Assert.Equal(HttpStatusCode.NotFound, exception.Code);
Assert.Equal(HttpStatusCode.Gone, exception.Code);
}
}
}

0 comments on commit c9faa25

Please sign in to comment.