Skip to content

Commit cc145f3

Browse files
devonfw#404: fixed assertThat import
1 parent eca4217 commit cc145f3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

url-updater/src/test/java/com/devonfw/tools/ide/url/tool/pip/PipUrlUpdaterTest.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import java.nio.file.Path;
99
import java.time.Instant;
1010

11-
import org.assertj.core.api.Assertions;
1211
import org.junit.jupiter.api.Test;
1312
import org.junit.jupiter.api.io.TempDir;
1413

@@ -54,13 +53,13 @@ public void testPipUrlUpdaterWithTextContentTypeWillSucceed(@TempDir Path tempDi
5453
Path versionsPath = tempDir.resolve(toolName).resolve(editionName).resolve(versionName);
5554

5655
// then
57-
Assertions.assertThat(versionsPath.resolve("status.json")).exists();
56+
assertThat(versionsPath.resolve("status.json")).exists();
5857

5958
StatusJson statusJson = retrieveStatusJson(urlRepository, toolName, editionName, versionName);
6059
UrlStatus urlStatus = statusJson.getOrCreateUrlStatus(statusUrl);
6160
Instant successTimestamp = urlStatus.getSuccess().getTimestamp();
6261

63-
Assertions.assertThat(successTimestamp).isNotNull();
62+
assertThat(successTimestamp).isNotNull();
6463

6564
}
6665
}

0 commit comments

Comments
 (0)