Skip to content

Commit

Permalink
Fix URL for ShowGitProvenanceTest (#2641)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmccarp authored Jan 13, 2023
1 parent bb33750 commit 426eaf1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ void showGitProvenance() {
rewriteRun(
text("Hello, World!", """
~~(GitProvenance:
origin: https://github.com/moderneinc/moderne-scm
origin: https://github.com/openrewrite/rewrite
branch: main
changeset: 1234567
autocrlf: False
eol: Native)~~>Hello, World!""",
spec -> spec.markers(new GitProvenance(Tree.randomId(), "https://github.com/moderneinc/moderne-scm", "main", "1234567", False, Native))
spec -> spec.markers(new GitProvenance(Tree.randomId(), "https://github.com/openrewrite/rewrite", "main", "1234567", False, Native))
)
);
}
Expand Down

0 comments on commit 426eaf1

Please sign in to comment.