Skip to content

Commit

Permalink
Correct JUnit import in OktaOAuthAuthenticationServiceTest
Browse files Browse the repository at this point in the history
Changed the import in OktaOAuthAuthenticationServiceTest.java from Junit Jupiter (org.junit.jupiter.api) to traditional JUnit (org.junit). This modification ensures better compatibility and correct functioning of assertEquals method in the tests.
  • Loading branch information
Gcolon021 committed Jan 31, 2024
1 parent 7a8563d commit fba0ae0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
import com.fasterxml.jackson.databind.node.ObjectNode;
import edu.harvard.hms.dbmi.avillach.auth.data.entity.User;
import org.junit.Test;
import org.mockito.Mock;

import java.util.UUID;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.when;

public class OktaOAuthAuthenticationServiceTest {
Expand Down

0 comments on commit fba0ae0

Please sign in to comment.