Skip to content

Commit

Permalink
ID-1570 - reverted pom;
Browse files Browse the repository at this point in the history
  • Loading branch information
snackk committed Aug 7, 2024
1 parent 3838e12 commit fb71485
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 24 deletions.
20 changes: 0 additions & 20 deletions dice-where-downloader-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,26 +137,6 @@
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>3.4.6</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package technology.dice.dicewhere.downloader.stream;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.Assert.assertEquals;

import java.io.FileInputStream;
import java.io.IOException;
Expand All @@ -9,15 +9,14 @@
import java.nio.file.Path;
import java.security.NoSuchAlgorithmException;
import org.apache.commons.io.IOUtils;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.Test;


public class StreamWithMD5DecoratorTest {

private static final String PATH = "/maxmind/maxmind-city-1.zip";

@Test
@DisplayName("Should Successfully Read a Stream and calculate the entire stream digest")
public void shouldSuccessfullyReadAndCalculateDigestOfStream()
throws IOException, NoSuchAlgorithmException, URISyntaxException {
Path path = Path.of(getClass().getResource(PATH).toURI());
Expand Down

0 comments on commit fb71485

Please sign in to comment.