mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 07:43:40 +01:00
Remove superflous semicolon
This commit is contained in:
@@ -204,7 +204,7 @@ public class DependencyVersionTest {
|
||||
DependencyVersion instance = new DependencyVersion();
|
||||
List<String> versionParts = Arrays.asList("1", "1", "1");
|
||||
instance.setVersionParts(versionParts);
|
||||
List<String> expResult = Arrays.asList("1", "1", "1");;
|
||||
List<String> expResult = Arrays.asList("1", "1", "1");
|
||||
List<String> result = instance.getVersionParts();
|
||||
assertEquals(expResult, result);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user