Skip to content

Commit

Permalink
Исправлен Assert в UpdateViewsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
inaidanov authored and turbcool committed Jan 25, 2024
1 parent 2f5649d commit c51df09
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 c51df09

Please sign in to comment.