Commit 01df9f2a authored by Greg Messner's avatar Greg Messner
Browse files

Fixed missing import

parent 35e18125
package org.gitlab4j.api; package org.gitlab4j.api;
import org.gitlab4j.api.models.DeployToken; import static org.junit.Assert.assertEquals;
import org.gitlab4j.api.models.DeployTokenScope; import static org.junit.Assert.assertNotNull;
import org.gitlab4j.api.models.Group; import static org.junit.Assume.assumeTrue;
import org.gitlab4j.api.models.Project;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import java.time.Instant; import java.time.Instant;
import java.time.temporal.ChronoUnit; import java.time.temporal.ChronoUnit;
...@@ -18,10 +12,15 @@ import java.util.Date; ...@@ -18,10 +12,15 @@ import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Optional; import java.util.Optional;
import static org.junit.Assert.assertEquals; import org.gitlab4j.api.Constants.DeployTokenScope;
import static org.junit.Assert.assertNotNull; import org.gitlab4j.api.models.DeployToken;
import static org.junit.Assert.assertTrue; import org.gitlab4j.api.models.Group;
import static org.junit.Assume.assumeTrue; import org.gitlab4j.api.models.Project;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
/** /**
* In order for these tests to run you must set the following properties in test-gitlab4j.properties * In order for these tests to run you must set the following properties in test-gitlab4j.properties
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment