File tree Expand file tree Collapse file tree
src/test/java/org/spdx/library/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55 <groupId >org.spdx</groupId >
66 <artifactId >spdx-rdf-store</artifactId >
7- <version >1.1.7 -SNAPSHOT</version >
7+ <version >1.1.8 -SNAPSHOT</version >
88 <packaging >jar</packaging >
99
1010 <name >spdx-rdf-store</name >
8484 <dependency >
8585 <groupId >org.spdx</groupId >
8686 <artifactId >java-spdx-library</artifactId >
87- <version >1.1.6 </version >
87+ <version >1.1.9 </version >
8888 </dependency >
8989 <dependency >
9090 <groupId >org.apache.jena</groupId >
Original file line number Diff line number Diff line change @@ -222,15 +222,15 @@ public void testVerify() throws InvalidSPDXAnalysisException {
222222 assertEquals (0 , result .size ());
223223 // verification code
224224 pkg .setPackageVerificationCode (null );
225- assertEquals (1 , pkg .verify ().size ());
225+ assertEquals (0 , pkg .verify ().size ());
226226
227227 // Make sure no files are allowed when filesAnalyzed is false
228228 pkg .setFilesAnalyzed (false );
229- assertEquals (1 , pkg .verify ().size ());
229+ assertEquals (2 , pkg .verify ().size ());
230230
231231 //Make sure we're valid with no files and no verification code when filesAnalyzed = false.
232232 pkg .getFiles ().clear ();
233- assertEquals (0 , pkg .verify ().size ());
233+ assertEquals (1 , pkg .verify ().size ());
234234 }
235235
236236 public void testEquivalent () throws InvalidSPDXAnalysisException {
You can’t perform that action at this time.
0 commit comments