Skip to content

Commit

Permalink
fix broken tests due to an invalid graphql mutation used in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Jul 31, 2024
1 parent 1ded97e commit 8cf5c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Testing/Services/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ await apiTester.ExecuteGql($$"""
code: "{{config.Code}}",
isConfidential: {{config.IsConfidential.ToString().ToLowerInvariant()}},
description: "Project created by an integration test",
owningOrgId: {{(config.OwningOrgId is null ? "null" : "\"" + config.OwningOrgId.ToString() + "\"")}}
orgId: {{(config.OwningOrgId is null ? "null" : "\"" + config.OwningOrgId.ToString() + "\"")}}
retentionPolicy: DEV
}) {
createProjectResponse {
Expand Down

0 comments on commit 8cf5c19

Please sign in to comment.