aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-09 09:05:54 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-11 18:17:19 +0200
commitb8c77c59c56731f9fdffc9bc9511a9da44cd3d68 (patch)
treeea801e3b5b175080de181ba420698acb642be836 /src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs
parentaa135cedf9dbed32f18621882ed0998a67193c85 (diff)
Fix warnings in Grpc.Examples
Diffstat (limited to 'src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs')
-rw-r--r--src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs b/src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs
index 7e894edd31..76f8cfadcf 100644
--- a/src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs
+++ b/src/csharp/Grpc.Reflection.Tests/ReflectionClientServerTest.cs
@@ -38,7 +38,7 @@ namespace Grpc.Reflection.Tests
ServerReflection.ServerReflectionClient client;
ReflectionServiceImpl serviceImpl;
- [TestFixtureSetUp]
+ [OneTimeSetUp]
public void Init()
{
serviceImpl = new ReflectionServiceImpl(ServerReflection.Descriptor);
@@ -55,7 +55,7 @@ namespace Grpc.Reflection.Tests
client = new ServerReflection.ServerReflectionClient(channel);
}
- [TestFixtureTearDown]
+ [OneTimeTearDown]
public void Cleanup()
{
channel.ShutdownAsync().Wait();