소스 검색

Fix broken test

Jon Skeet 9 년 전
부모
커밋
030c268489
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs

+ 1 - 1
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());
         }