We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d378e50 commit e29e666Copy full SHA for e29e666
library/src/androidTest/java/com/qiniu/android/EtagTest.java
@@ -46,7 +46,7 @@ public void testFile() throws IOException {
46
public void testLongToInt() {
47
long len = 2323435710l;
48
int b = (int) ((len + Configuration.BLOCK_SIZE - 1) / Configuration.BLOCK_SIZE);
49
- Assert.assertEquals("预计会溢出", 554, b);
+ Assert.assertEquals("不应该溢出", 554, b);
50
int a = (int) (len + Configuration.BLOCK_SIZE - 1) / Configuration.BLOCK_SIZE;
51
Assert.assertNotSame("预计会溢出", 554, a);
52
}
0 commit comments