style: avoid wildcard imports (#4386)

* style: import `assertEquals` explicitly

* fix: import `assertThrows`
This commit is contained in:
Piotr Idzik 2023-09-20 19:38:37 +02:00 committed by GitHub
parent 12b6c29243
commit 906cd87731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
package com.thealgorithms.maths;
import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;