Skip to content

Commit 83a6f02

Browse files
committed
Polish
1 parent a9645a3 commit 83a6f02

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-boot-cli/src/test/java/org/springframework/boot/cli/command/test/TestRunnerTests.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2015 the original author or authors.
2+
* Copyright 2012-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -40,8 +40,7 @@ public void exceptionMessageWhenSourcesContainsNoClasses() throws Exception {
4040
given(configuration.getClasspath()).willReturn(new String[0]);
4141
this.thrown.expect(RuntimeException.class);
4242
this.thrown.expectMessage(equalTo("No classes found in '[foo, bar]'"));
43-
new TestRunner(configuration, new String[] { "foo", "bar" }, new String[0])
44-
.compileAndRunTests();
43+
new TestRunner(configuration, new String[] { "foo", "bar" }).compileAndRunTests();
4544
}
4645

4746
}

0 commit comments

Comments
 (0)