Skip to content

Commit

Permalink
#96: Removed forced markdown mode usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Invictum committed Jun 12, 2020
1 parent 085dd9b commit b2a6909
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static Function<TestStep, Collection<SaveLogRQ>> restQuery() {
return step -> {
if (step.hasRestQuery()) {
RestQuery query = step.getRestQuery();
StringBuilder builder = new StringBuilder("!!!MARKDOWN_MODE!!!");
StringBuilder builder = new StringBuilder();
// Request
builder.append("## Request\n\n").append(query.getFormattedQuery()).append("\n\n");
if (query.getRequestHeaders() != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@RunWith(MockitoJUnitRunner.StrictStubs.class)
public class RestTest {

private static String MESSAGE = "!!!MARKDOWN_MODE!!!## Request\n" +
private static String MESSAGE = "## Request\n" +
"\n" +
"GET path\n" +
"\n" +
Expand Down

0 comments on commit b2a6909

Please sign in to comment.