Skip to content

Commit

Permalink
fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeytewari-ul committed Jun 24, 2024
1 parent dccd01a commit be2e65e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/python/Target.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# define constants
main_method_identifier = "public static void main"
unlogged_annotation = '@Unlogged(port = "12100")'
unlogged_annotation = "@Unlogged(port = " + "12100" + ")"
unlogged_import = "import io.unlogged.Unlogged;"

class ReplayTest:
Expand Down
2 changes: 1 addition & 1 deletion src/test/python/compile_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def compile_target (target):
if "io.projectreactor" in dependencies:
raise Exception("Found reactor core in a Non reactive project " + target.test_repo_name + " - Failing")
else :
print("Reactor core not found on NonReactive project - Passsing")
print("Reactor core not found on NonReactive project - Passing")
else:
if "io.projectreactor" in dependencies:
print("Reactor core found on Reactive project - Passing")
Expand Down

0 comments on commit be2e65e

Please sign in to comment.