Skip to content

Commit

Permalink
Pass isConfidential: false in dotnet test (#792)
Browse files Browse the repository at this point in the history
Now that isConfidential is required in GraphQL, we need it in the dotnet
test methods that create projects via GQL queries.
  • Loading branch information
rmunn authored May 8, 2024
1 parent 442104b commit a7907e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/Testing/ApiTests/NewProjectRaceCondition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ private async Task CreateQueryAndVerifyProject(Guid id)
type: FL_EX,
id: "{{id}}",
code: "{{id}}",
isConfidential: false,
description: "this is just a testing project for testing a race condition",
retentionPolicy: DEV
}) {
Expand Down
1 change: 1 addition & 0 deletions backend/Testing/Services/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ await apiTester.ExecuteGql($$"""
type: FL_EX,
id: "{{config.Id}}",
code: "{{config.Code}}",
isConfidential: false,
description: "Project created by an integration test",
retentionPolicy: DEV
}) {
Expand Down

0 comments on commit a7907e7

Please sign in to comment.