Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed May 2, 2018
1 parent 3dc8ba2 commit e98c3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/amihaiemil/docker/RtSwarmTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void forcedLeave() throws Exception {
"{}"
),
new Condition(
"Request method should be GET",
"Request method should be POST",
req -> "POST".equals(req.getRequestLine().getMethod())
),
new Condition(
Expand All @@ -85,7 +85,7 @@ public void leavesWithoutForce() throws Exception {
"{}"
),
new Condition(
"Request method should be GET",
"Request method should be POST",
req -> "POST".equals(req.getRequestLine().getMethod())
),
new Condition(
Expand Down

2 comments on commit e98c3bb

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on e98c3bb May 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 70-0fb5bff7 disappeared from src/main/java/com/amihaiemil/docker/Swarm.java, that's why I closed #77. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on e98c3bb May 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 77-48853626 discovered in src/main/java/com/amihaiemil/docker/Swarm.java and submitted as #95. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.