Skip to content

Commit

Permalink
chore(ci): fallback step name when they are skipped (#3679) (generate…
Browse files Browse the repository at this point in the history
…d) [skip ci]

Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
  • Loading branch information
algolia-bot and millotp committed Sep 9, 2024
1 parent f85db5d commit 265d392
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/output/csharp/src/generated/client/Search.test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public async Task IndexExistsTest0()
{
var res = await client.IndexExistsAsync("indexExistsYES");

Assert.True(res);
Assert.Equal(true, res);
}
}

Expand All @@ -345,7 +345,7 @@ public async Task IndexExistsTest1()
{
var res = await client.IndexExistsAsync("indexExistsNO");

Assert.False(res);
Assert.Equal(false, res);
}
}

Expand Down Expand Up @@ -807,7 +807,7 @@ public async Task WaitForApiKeyTest2()
Enum.Parse<ApiKeyOperation>("Delete")
);

Assert.Null(res);
Assert.Equal(null, res);
}
}

Expand Down

0 comments on commit 265d392

Please sign in to comment.