correct exception type

This commit is contained in:
Jedd Morgan
2026-01-29 13:36:33 +00:00
parent 76d3b8279c
commit 2cd1f1bbde
@@ -158,6 +158,6 @@ public class ModelResourceTests : IAsyncLifetime
await Sut.CanCreateModelIngestion(_project.id, _model.id)
);
ex.InnerExceptions.Should().HaveCount(1);
ex.InnerExceptions.Should().AllBeOfType<SpeckleGraphQLBadInputException>();
ex.InnerExceptions.Should().AllBeOfType<SpeckleGraphQLInvalidQueryException>();
}
}