Skip to content

Commit af09d31

Browse files
committed
docs: remove leftover comment
Signed-off-by: Ruben Romero Montes <rromerom@redhat.com>
1 parent b4bcfa9 commit af09d31

1 file changed

Lines changed: 13 additions & 14 deletions

File tree

src/test/java/io/github/guacsec/trustifyda/providers/Golang_Modules_Provider_Test.java

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,32 @@
1616
*/
1717
package io.github.guacsec.trustifyda.providers;
1818

19-
import static io.github.guacsec.trustifyda.Provider.PROP_MATCH_MANIFEST_VERSIONS;
19+
import java.io.IOException;
20+
import java.nio.file.Files;
21+
import java.nio.file.Path;
22+
import java.util.Arrays;
23+
import java.util.stream.Stream;
24+
2025
import static org.assertj.core.api.Assertions.assertThat;
2126
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
2227
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
2328
import static org.junit.jupiter.api.Assertions.assertEquals;
2429
import static org.junit.jupiter.api.Assertions.assertThrows;
2530
import static org.junit.jupiter.api.Assertions.assertTrue;
31+
import org.junit.jupiter.api.Test;
32+
import org.junit.jupiter.api.extension.ExtendWith;
33+
import org.junit.jupiter.params.ParameterizedTest;
34+
import org.junit.jupiter.params.provider.MethodSource;
35+
import org.junit.jupiter.params.provider.ValueSource;
2636

2737
import com.fasterxml.jackson.core.JsonProcessingException;
2838
import com.fasterxml.jackson.databind.JsonNode;
2939
import com.fasterxml.jackson.databind.ObjectMapper;
3040
import com.fasterxml.jackson.databind.SerializationFeature;
41+
3142
import io.github.guacsec.trustifyda.Api;
3243
import io.github.guacsec.trustifyda.ExhortTest;
33-
import java.io.IOException;
34-
import java.nio.file.Files;
35-
import java.nio.file.Path;
36-
import java.util.Arrays;
37-
import java.util.stream.Stream;
38-
import org.junit.jupiter.api.Test;
39-
import org.junit.jupiter.api.extension.ExtendWith;
40-
import org.junit.jupiter.params.ParameterizedTest;
41-
import org.junit.jupiter.params.provider.MethodSource;
42-
import org.junit.jupiter.params.provider.ValueSource;
44+
import static io.github.guacsec.trustifyda.Provider.PROP_MATCH_MANIFEST_VERSIONS;
4345

4446
@ExtendWith(HelperExtension.class)
4547
class Golang_Modules_Provider_Test extends ExhortTest {
@@ -205,9 +207,6 @@ void Test_Golang_MvS_Logic_Disabled() throws IOException {
205207
* HashMap.put()} which overwrites children when two original parent versions remap to the same
206208
* MVS-selected version. This causes the Java client to produce fewer components than the JS
207209
* client.
208-
*
209-
* <p>The JS client produces 138 components for this fixture. This test is expected to FAIL until
210-
* the HashMap.put() collision bug is fixed.
211210
*/
212211
@Test
213212
void Test_Golang_MvS_Enabled_Preserves_All_Transitive_Dependencies() throws IOException {

0 commit comments

Comments
 (0)