Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

us/#132672: fix test flakyness #357

Open
wants to merge 1 commit into
base: us/#132672_fix_netCore_serialization_corelib_assembly
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ public void InnerException_RoundTrip_AllStackTracesCleaned()


[Test]
[NonParallelizable]
public async Task TryParseExceptionJsonFromNetCoreOriginWithConfigOn()
{

Expand All @@ -186,7 +187,7 @@ await ChangeConfig<StackTraceEnhancerSettings>(new[]
new KeyValuePair<string, string>("Microdot.ExceptionSerialization.UseNetCoreToFrameworkNameTranslation",
"true")
});

string strResourceName = "Gigya.Microdot.UnitTests.ServiceProxyTests.ExceptionFromNetCore.json";

string netCoreExceptionJson = null;
Expand Down Expand Up @@ -221,6 +222,7 @@ await ChangeConfig<StackTraceEnhancerSettings>(new[]


[Test]
[NonParallelizable]
public async Task TryParseExceptionJsonFromNetCoreOriginWithConfigOff()
{
await ChangeConfig<StackTraceEnhancerSettings>(new[]
Expand Down