Skip to content

Commit c0713c3

Browse files
committed
fixing classpath problem
1 parent 9e2dc2c commit c0713c3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

biojava-core/src/test/java/org/biojava/nbio/core/sequence/TranslationTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ public class TranslationTest {
6161
@BeforeClass
6262
public static void parseSequences() {
6363
InputStream cdsIs = new ClasspathResource(
64-
"/org/biojava/nbio/core/sequence/BRCA2-cds.fasta").getInputStream();
64+
"org/biojava/nbio/core/sequence/BRCA2-cds.fasta").getInputStream();
6565
InputStream pepIs = new ClasspathResource(
66-
"/org/biojava/nbio/core/sequence/BRCA2-peptide.fasta").getInputStream();
66+
"org/biojava/nbio/core/sequence/BRCA2-peptide.fasta").getInputStream();
6767
InputStream volDnaIs = new ClasspathResource(
68-
"/org/biojava/nbio/core/sequence/volvox-cds.fasta").getInputStream();
68+
"org/biojava/nbio/core/sequence/volvox-cds.fasta").getInputStream();
6969
InputStream volPepIs = new ClasspathResource(
70-
"/org/biojava/nbio/core/sequence/volvox-peptide.fasta").getInputStream();
70+
"org/biojava/nbio/core/sequence/volvox-peptide.fasta").getInputStream();
7171

7272
try {
7373
FastaReader<DNASequence, NucleotideCompound> dnaReader = new FastaReader<DNASequence, NucleotideCompound>(cdsIs,

0 commit comments

Comments
 (0)