Merge pull request #280 from specklesystems/main-dev

Main->Dev
This commit is contained in:
Adam Hathcock
2025-04-23 13:04:37 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -100,7 +100,7 @@ public class ModelResourceExceptionalTests : IAsyncLifetime
.Invoking(async () => await Sut.Update(input))
.Should()
.ThrowAsync<AggregateException>();
ex.WithInnerExceptionExactly<SpeckleGraphQLForbiddenException>();
ex.WithInnerExceptionExactly<SpeckleGraphQLStreamNotFoundException>();
}
[Fact]
@@ -73,7 +73,7 @@ public class ProjectResourceExceptionalTests : IAsyncLifetime
var ex = await Assert.ThrowsAsync<AggregateException>(
async () => _ = await Sut.Update(new("NonExistentProject", "My new name"))
);
ex.InnerExceptions.Single().Should().BeOfType<SpeckleGraphQLForbiddenException>();
ex.InnerExceptions.Single().Should().BeOfType<SpeckleGraphQLStreamNotFoundException>();
}
[Fact]