File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
src/test/java/org/commonwl/view Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 5
5
import org .commonwl .view .workflow .WorkflowOverview ;
6
6
import org .junit .Test ;
7
7
import org .junit .runner .RunWith ;
8
- import org .slf4j .Logger ;
9
- import org .slf4j .LoggerFactory ;
10
8
import org .springframework .beans .factory .annotation .Autowired ;
11
9
import org .springframework .boot .test .context .SpringBootTest ;
12
10
import org .springframework .test .context .junit4 .SpringRunner ;
19
17
@ SpringBootTest
20
18
public class CWLServiceTest {
21
19
22
- private final Logger logger = LoggerFactory .getLogger (this .getClass ());
23
-
24
20
/**
25
21
* Create a service to test
26
22
*/
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public void getDockerHubURL() throws Exception {
22
22
String test3 = DockerService .getDockerHubURL ("ubuntu" );
23
23
assertEquals ("https://hub.docker.com/r/_/ubuntu" , test3 );
24
24
25
- String test4 = DockerService .getDockerHubURL (null );
25
+ String test4 = DockerService .getDockerHubURL ("clearly/not/a/valid/tag" );
26
26
assertNull (test4 );
27
27
28
28
}
You can’t perform that action at this time.
0 commit comments