Browse Source

Use uppercase literal suffix.

drieseng 9 năm trước cách đây
mục cha
commit
fbff2e53a4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Renci.SshNet.Tests/Classes/Common/BigIntegerTest.cs

+ 1 - 1
src/Renci.SshNet.Tests/Classes/Common/BigIntegerTest.cs

@@ -1512,7 +1512,7 @@ namespace Renci.SshNet.Tests.Classes.Common
             Assert.AreEqual(false, a < a, "#6");
 
             a = new BigInteger();
-            Assert.AreEqual(true, a < 10l, "#7");
+            Assert.AreEqual(true, a < 10L, "#7");
 
             a = new BigInteger();
             Assert.AreEqual(true, a.IsEven, "#8");