From 6db98701f2fb5e29d5b07554e708a1cdc9456f38 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Mon, 29 Mar 2021 08:51:19 +0200 Subject: [PATCH] Fix null test. --- .../tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs b/backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs index 230fb277e..9c2005dab 100644 --- a/backend/tools/TestSuite/TestSuite.ApiTests/ContentUpdateTests.cs +++ b/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"]); }