We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e11570a commit 373a3cdCopy full SHA for 373a3cd
tests/output/csharp/src/generated/client/Search.test.cs
@@ -318,7 +318,7 @@ public async Task IndexExistsTest0()
318
{
319
var res = await client.IndexExistsAsync("indexExistsYES");
320
321
- Assert.True(res);
+ Assert.Equal(true, res);
322
}
323
324
@@ -345,7 +345,7 @@ public async Task IndexExistsTest1()
345
346
var res = await client.IndexExistsAsync("indexExistsNO");
347
348
- Assert.False(res);
+ Assert.Equal(false, res);
349
350
351
@@ -807,7 +807,7 @@ public async Task WaitForApiKeyTest2()
807
Enum.Parse<ApiKeyOperation>("Delete")
808
);
809
810
- Assert.Null(res);
+ Assert.Equal(null, res);
811
812
813
0 commit comments