Skip to content

Commit 905a870

Browse files
author
pavanpa
committed
Patched to allow tests to be completed on windows. It was due to the test resource included that was built on linux and was not binary comparable to the one obtained at runtime in windows.
1 parent 154edb7 commit 905a870

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

biojava-genome/src/test/java/org/biojava/nbio/genome/GeneFeatureHelperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void testOutputFastaSequenceLengthGFF3() throws Exception {
102102
File gffFile = File.createTempFile("volvox_length", "gff3");
103103
gffFile.deleteOnExit();
104104
GeneFeatureHelper.outputFastaSequenceLengthGFF3(fastaSequenceFile, gffFile);
105-
FileAssert.assertBinaryEquals("volvox_length.gff3 and volvox_length_output.gff3 are not equal", gffFile,
105+
FileAssert.assertEquals("volvox_length.gff3 and volvox_length_output.gff3 are not equal", gffFile,
106106
new File("src/test/resources/volvox_length_reference.gff3"));
107107

108108
}

0 commit comments

Comments
 (0)