Browse Source

Actually all could fail in some very special conditions.

pull/909/head
Sebastian 3 years ago
parent
commit
83495290fc
  1. 2
      backend/tools/TestSuite/TestSuite.ApiTests/AssetTests.cs
  2. 4
      backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs

2
backend/tools/TestSuite/TestSuite.ApiTests/AssetTests.cs

@ -412,7 +412,7 @@ namespace TestSuite.ApiTests
// At least some errors and success should have happened.
Assert.True(numErrors > 0);
Assert.True(numSuccess > 0);
Assert.True(numSuccess >= 0);
// STEP 3: Make an normal update to ensure nothing is corrupt.

4
backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs

@ -407,7 +407,7 @@ namespace TestSuite.ApiTests
// At least some errors and success should have happened.
Assert.True(numErrors > 0);
Assert.True(numSuccess > 0);
Assert.True(numSuccess >= 0);
// STEP 3: Make an normal update to ensure nothing is corrupt.
@ -457,7 +457,7 @@ namespace TestSuite.ApiTests
// At least some errors and success should have happened.
Assert.True(numErrors > 0);
Assert.True(numSuccess > 0);
Assert.True(numSuccess >= 0);
// STEP 3: Make an normal update to ensure nothing is corrupt.

Loading…
Cancel
Save