Skip to content

Commit

Permalink
Including a version number update and check for len()
Browse files Browse the repository at this point in the history
  • Loading branch information
cecily_carver committed Jan 29, 2025
1 parent 5a5160a commit 768d557
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mysql_mimic/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""mysql-mimic version information"""

__version__ = "2.6.3"
__version__ = "2.6.4"


def main(name: str) -> None:
Expand Down
1 change: 1 addition & 0 deletions tests/test_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def test_parse_timezone() -> None:
def test_variable_mapping() -> None:
test_vars = TestVars()
assert test_vars
assert len(test_vars) == 1

assert test_vars.get_variable("foo") == "bar"
assert test_vars["foo"] == "bar"
Expand Down

0 comments on commit 768d557

Please sign in to comment.