Browse Source

Fix null test.

pull/680/head
Sebastian Stehle 5 years ago
parent
commit
6db98701f2
  1. 2
      backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs

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

@ -150,7 +150,7 @@ namespace TestSuite.ApiTests
// STEP 2: Get the item and ensure that the text is the same.
var updated = await _.Contents.GetAsync(content.Id);
var updated = await _.Contents.GetAsync(content.Id, QueryContext.Default.IgnoreFallback());
Assert.Null(updated.Data.Localized["en"]);
}

Loading…
Cancel
Save