Skip to content

Commit

Permalink
Merge pull request spring-projects#16193 from izeye
Browse files Browse the repository at this point in the history
* pr/16193:
  Polish
  • Loading branch information
snicoll committed Mar 12, 2019
2 parents 8a0dc61 + bcfbabe commit 7f582cc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2626,7 +2626,7 @@ There are several options for hot reloading. The recommended approach is to use
additional development-time features, such as support for fast application restarts
and LiveReload as well as sensible development-time configuration (such as template
caching). Devtools works by monitoring the classpath for changes. This means that static
resource changes must be "built" for the change to take affect. By default, this happens
resource changes must be "built" for the change to take effect. By default, this happens
automatically in Eclipse when you save your changes. In IntelliJ IDEA, the Make Project
command triggers the necessary build. Due to the
<<using-spring-boot.adoc#using-boot-devtools-restart-exclude, default restart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8632,7 +8632,7 @@ documentation] for more details. You also need to
{junit5-documentation}/#writing-tests-test-instance-lifecycle-changing-default[switch test
instance lifecycle to "per-class"].

To mock Kotlin classes, https://mockk.io/[Mockk] is recommended. If you need the `Mockk`
To mock Kotlin classes, https://mockk.io/[MockK] is recommended. If you need the `Mockk`
equivalent of the Mockito specific
<<boot-features-testing-spring-boot-applications-mocking-beans,`@MockBean` and `@SpyBean`
annotations>>, you can use https://github.com/Ninja-Squad/springmockk[SpringMockK] which
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public void noSuchMethodErrorIsAnalyzed() {
assertThat(failure).isNotNull();
FailureAnalysis analysis = new NoSuchMethodFailureAnalyzer().analyze(failure);
assertThat(analysis).isNotNull();
System.out.println(analysis.getDescription());
assertThat(analysis.getDescription())
.contains(NoSuchMethodFailureAnalyzerTests.class.getName()
+ ".createFailure(")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Next, add your user to the `docker` group. For example:
$ sudo usermod -a -G docker awilkinson
----

You may need to log out and back in again for this change to take affect and for your
You may need to log out and back in again for this change to take effect and for your
user to be able to connect to the daemon.


Expand Down

0 comments on commit 7f582cc

Please sign in to comment.