Skip to content

Commit

Permalink
Исправлен Assert в UpdateViewsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
inaidanov committed Jan 23, 2024
1 parent bb3408e commit 375c6cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void UpdateViewNoMastersTest()
var requestUrl = ODataHelper.GetRequestUrl(args.Token.Model, берлога1);
// Сейчас обновление мастеров не поддерживается.
Assert.Throws<Exception>(() => args.HttpClient.PatchAsJsonStringAsync(requestUrl, requestJsonData).Result); // Если падает Exception, значит представление поменялось и работает.
Assert.ThrowsAsync<Exception>(() => args.HttpClient.PatchAsJsonStringAsync(requestUrl, requestJsonData)); // Если падает Exception, значит представление поменялось и работает.
});
}
}
Expand Down

0 comments on commit 375c6cd

Please sign in to comment.