Skip to content

Commit

Permalink
corrected imports for junit
Browse files Browse the repository at this point in the history
  • Loading branch information
tutkat committed May 24, 2024
1 parent 81e58df commit a6ea03d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions v4/api/MetrosApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
import com.equinix.openapi.fabric.v4.model.Metro;
import com.equinix.openapi.fabric.v4.model.MetroResponse;
import com.equinix.openapi.fabric.v4.model.Presence;

import org.junit.jupiter.api.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

/**
* API tests for MetrosApi
Expand Down
4 changes: 2 additions & 2 deletions v4/api/PricesApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import java.util.Arrays;
import java.util.Collections;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;

/**
* API tests for PricesApi
Expand Down

0 comments on commit a6ea03d

Please sign in to comment.