Skip to content

Commit

Permalink
Merge branch '2161-code-portfolio' of https://github.com/reposense/Re…
Browse files Browse the repository at this point in the history
…poSense into 2161-code-portfolio
  • Loading branch information
sopa301 committed Apr 8, 2024
2 parents 1145f8e + 4299ff2 commit 7c94fea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/reposense/parser/MarkdownParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @param <T> Generic Type {@code T}.
*/
public abstract class MarkdownParser<T> {
protected static final Pattern DELIMITER = Pattern.compile("<!--repo-->(.+)");
protected static final Pattern DELIMITER = Pattern.compile("<!--repo-->(.*)");
protected static final Logger logger = LogsManager.getLogger(MarkdownParser.class);

protected final Path markdownPath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public void getBranches_equalsDefaultReturnValue_success() {

@Test
public void getAuthorNames_equalsDefaultReturnValue_success() {
Assertions.assertSame(new ReportRepoConfiguration().getAuthorNames(), ReportRepoConfiguration.DEFAULT_AUTHOR_NAMES);
Assertions.assertSame(new ReportRepoConfiguration().getAuthorNames(),
ReportRepoConfiguration.DEFAULT_AUTHOR_NAMES);
}

@Test
Expand Down

0 comments on commit 7c94fea

Please sign in to comment.