Skip to content

Commit 265d392

Browse files
algolia-botmillotp
andcommitted
chore(ci): fallback step name when they are skipped (#3679) (generated) [skip ci]
Co-authored-by: Pierre Millot <[email protected]>
1 parent f85db5d commit 265d392

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/output/csharp/src/generated/client/Search.test.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public async Task IndexExistsTest0()
318318
{
319319
var res = await client.IndexExistsAsync("indexExistsYES");
320320

321-
Assert.True(res);
321+
Assert.Equal(true, res);
322322
}
323323
}
324324

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

348-
Assert.False(res);
348+
Assert.Equal(false, res);
349349
}
350350
}
351351

@@ -807,7 +807,7 @@ public async Task WaitForApiKeyTest2()
807807
Enum.Parse<ApiKeyOperation>("Delete")
808808
);
809809

810-
Assert.Null(res);
810+
Assert.Equal(null, res);
811811
}
812812
}
813813

0 commit comments

Comments
 (0)