We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4bf45 commit dcf965dCopy full SHA for dcf965d
1 file changed
test/ubic/basecode/util/NetUtilsTest.java
@@ -80,9 +80,9 @@ final public void testFtpFileSize() throws Exception {
80
log.warn( "Could not connect to ftp.ncbi.nlm.nih.gov, skipping test" );
81
return;
82
}
83
- long actualValue = NetUtils.ftpFileSize( f, "genomes/Pan_troglodytes/WGS_12Dec2003/WIBR.seq007.fa" );
84
- long expectedValue = 131446617;
85
- assertEquals( expectedValue, actualValue, 100000 ); // don't really care if they change the file size....
+ long actualValue = NetUtils.ftpFileSize( f, "genomes/all/annotation_releases/1026970/102/Nannospalax_galili_AR102_annotation_report.xml" );
+ long expectedValue = 79819;
+ assertEquals( expectedValue, actualValue, 10000 ); // don't really care if they change the file size....
86
87
88
@Test
0 commit comments