Skip to content

Commit

Permalink
fix: resolve conflicts of rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
juliapampus committed Apr 24, 2023
1 parent d6eb239 commit 0d1784e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
package org.eclipse.edc.protocol.dsp.transform.util;

import jakarta.json.Json;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

class TypeUtilTest {

Expand Down Expand Up @@ -91,7 +90,7 @@ public void isOfExpectedType_false() {

var actual = TypeUtil.isOfExpectedType(object, "invalid_type");

assertFalse(actual);
Assertions.assertFalse(actual);
}

@Test
Expand All @@ -103,6 +102,6 @@ public void isOfExpectedType_true() {

var actual = TypeUtil.isOfExpectedType(object, expected);

assertTrue(actual);
Assertions.assertTrue(actual);
}
}

0 comments on commit 0d1784e

Please sign in to comment.