summaryrefslogtreecommitdiff
path: root/test/netstd/Client/Performance/PerformanceTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'test/netstd/Client/Performance/PerformanceTests.cs')
-rw-r--r--test/netstd/Client/Performance/PerformanceTests.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/netstd/Client/Performance/PerformanceTests.cs b/test/netstd/Client/Performance/PerformanceTests.cs
index 05c64b240..2c79aa6ef 100644
--- a/test/netstd/Client/Performance/PerformanceTests.cs
+++ b/test/netstd/Client/Performance/PerformanceTests.cs
@@ -68,10 +68,9 @@ namespace Client.Tests
foreach (var layered in Enum.GetValues(typeof(LayeredChoice)))
{
Layered = (LayeredChoice)layered;
-
await RunTestAsync(async (bool b) => { return await GenericProtocolFactory<TBinaryProtocol>(b); });
await RunTestAsync(async (bool b) => { return await GenericProtocolFactory<TCompactProtocol>(b); });
- //await RunTestAsync(async (bool b) => { return await GenericProtocolFactory<TJsonProtocol>(b); });
+ await RunTestAsync(async (bool b) => { return await GenericProtocolFactory<TJsonProtocol>(b); });
}
}