Skip to content

Commit

Permalink
fix: version string in main module (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Izquierdo authored Jul 26, 2023
1 parent 9fb8a7a commit 1fdd29d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible_rulebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""Top-level package for Ansible Events."""

__version__ = "__version__ = '1.0.1'"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion tests/unit/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def test_get_version():
output = get_version()
pattern = re.compile(
r"""(.+)\d+\.\d+\.\d+'
r"""\d+\.\d+\.\d+
Executable location = (.+)
Drools_jpy version = \d+\.\d+\.\d+
Java home = (.+)
Expand Down

0 comments on commit 1fdd29d

Please sign in to comment.