Skip to content

Commit e29e666

Browse files
committed
测试修[ci skip]改
1 parent d378e50 commit e29e666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/androidTest/java/com/qiniu/android/EtagTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void testFile() throws IOException {
4646
public void testLongToInt() {
4747
long len = 2323435710l;
4848
int b = (int) ((len + Configuration.BLOCK_SIZE - 1) / Configuration.BLOCK_SIZE);
49-
Assert.assertEquals("预计会溢出", 554, b);
49+
Assert.assertEquals("不应该溢出", 554, b);
5050
int a = (int) (len + Configuration.BLOCK_SIZE - 1) / Configuration.BLOCK_SIZE;
5151
Assert.assertNotSame("预计会溢出", 554, a);
5252
}

0 commit comments

Comments
 (0)