aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-18 21:02:03 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-18 21:02:03 -0700
commite0af286620c40dfcf625abe85cb753a6f5223f92 (patch)
treeb82c73be537d2062393e9dbe2ad047f8109b30a7 /src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs
parenta7db28fe4da18da9acdb3990d8449729a044f3a1 (diff)
rename some ill-named enums and move them to the right files
Diffstat (limited to 'src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs')
-rw-r--r--src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs b/src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs
index 1f6110c120..c124ea29af 100644
--- a/src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs
+++ b/src/csharp/Grpc.Core.Tests/Internal/TimespecTest.cs
@@ -108,7 +108,7 @@ namespace Grpc.Core.Internal.Tests
Assert.Throws(typeof(InvalidOperationException),
() => new Timespec(0, 1000 * 1000 * 1000).ToDateTime());
Assert.Throws(typeof(InvalidOperationException),
- () => new Timespec(0, 0, GPRClockType.Monotonic).ToDateTime());
+ () => new Timespec(0, 0, ClockType.Monotonic).ToDateTime());
}
[Test]