File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
src/test/java/org/biojava/bio/program/fastq Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1616 <dependency >
1717 <groupId >com.google.guava</groupId >
1818 <artifactId >guava</artifactId >
19- <version >30.1 .1-jre</version >
19+ <version >31.0 .1-jre</version >
2020 </dependency >
2121 </dependencies >
2222 </dependencyManagement >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public void testValidateDescription() throws Exception
6767 }
6868 catch (IOException e )
6969 {
70- assertTrue (e .getMessage ().contains ("description must begin with a '@' character" ));
70+ assertTrue (e .getCause (). getMessage ().contains ("description must begin with a '@' character" ));
7171 }
7272 }
7373
@@ -82,7 +82,7 @@ public void testValidateRepeatDescription() throws Exception
8282 }
8383 catch (IOException e )
8484 {
85- assertTrue (e .getMessage ().contains ("repeat description must match description" ));
85+ assertTrue (e .getCause (). getMessage ().contains ("repeat description must match description" ));
8686 }
8787 }
8888
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public void testValidateDescription() throws Exception
6767 }
6868 catch (IOException e )
6969 {
70- assertTrue (e .getMessage ().contains ("description must begin with a '@' character" ));
70+ assertTrue (e .getCause (). getMessage ().contains ("description must begin with a '@' character" ));
7171 }
7272 }
7373
@@ -82,7 +82,7 @@ public void testValidateRepeatDescription() throws Exception
8282 }
8383 catch (IOException e )
8484 {
85- assertTrue (e .getMessage ().contains ("repeat description must match description" ));
85+ assertTrue (e .getCause (). getMessage ().contains ("repeat description must match description" ));
8686 }
8787 }
8888
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public void testValidateDescription() throws Exception
6767 }
6868 catch (IOException e )
6969 {
70- assertTrue (e .getMessage ().contains ("description must begin with a '@' character" ));
70+ assertTrue (e .getCause (). getMessage ().contains ("description must begin with a '@' character" ));
7171 }
7272 }
7373
@@ -82,7 +82,7 @@ public void testValidateRepeatDescription() throws Exception
8282 }
8383 catch (IOException e )
8484 {
85- assertTrue (e .getMessage ().contains ("repeat description must match description" ));
85+ assertTrue (e .getCause (). getMessage ().contains ("repeat description must match description" ));
8686 }
8787 }
8888
You can’t perform that action at this time.
0 commit comments