Skip to content

Commit d5f136c

Browse files
committed
style: spotless apply
1 parent 613aa3d commit d5f136c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/test/java/com/github/packageurl/PackageURLTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ void validPercentEncoding() throws MalformedPackageURLException {
7676
@Test
7777
void invalidPercentEncoding() throws MalformedPackageURLException {
7878
assertThrowsExactly(
79-
MalformedPackageURLException.class,
80-
() -> new PackageURL("pkg:maven/com.google.summit/[email protected]%"));
79+
MalformedPackageURLException.class,
80+
() -> new PackageURL("pkg:maven/com.google.summit/[email protected]%"));
8181
assertThrowsExactly(
82-
MalformedPackageURLException.class,
83-
() -> new PackageURL("pkg:maven/com.google.summit/[email protected]%0"));
82+
MalformedPackageURLException.class,
83+
() -> new PackageURL("pkg:maven/com.google.summit/[email protected]%0"));
8484
}
8585

8686
static Stream<Arguments> constructorParsing() throws IOException {

src/test/java/com/github/packageurl/utils/StringUtilTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import static org.junit.jupiter.api.Assertions.assertThrowsExactly;
2626

2727
import com.github.packageurl.MalformedPackageURLException;
28-
import com.github.packageurl.PackageURL;
2928
import com.github.packageurl.ValidationException;
3029
import org.junit.jupiter.api.Test;
3130

0 commit comments

Comments
 (0)