aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs
diff options
context:
space:
mode:
authorGravatar Jon Skeet <jonskeet@google.com>2016-01-15 17:34:10 +0000
committerGravatar Jon Skeet <jonskeet@google.com>2016-01-15 17:34:10 +0000
commit030c2684899b2b84f1023d668c5bf40b6ce1143d (patch)
treec5c79f8aa8595fbc9dee969524956dbf7dc29187 /csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs
parent5ee055d53dbc0539bd9bef883097b652f7210b3f (diff)
Fix broken test
Diffstat (limited to 'csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs')
-rw-r--r--csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs b/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs
index b0f58744..9e994a6a 100644
--- a/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs
+++ b/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs
@@ -384,7 +384,7 @@ namespace Google.Protobuf
[Test]
[TestCase(1, 2123456789)]
[TestCase(1, -100000000)]
- public void DurationStandalone_NonNormalized(long seconds, int nanoseconds, string expected)
+ public void DurationStandalone_NonNormalized(long seconds, int nanoseconds)
{
Assert.Throws<InvalidOperationException>(() => new Duration { Seconds = seconds, Nanos = nanoseconds }.ToString());
}