Skip to content

Commit 768d557

Browse files
author
cecily_carver
committed
Including a version number update and check for len()
1 parent 5a5160a commit 768d557

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

mysql_mimic/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""mysql-mimic version information"""
22

3-
__version__ = "2.6.3"
3+
__version__ = "2.6.4"
44

55

66
def main(name: str) -> None:

tests/test_variables.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def test_parse_timezone() -> None:
3434
def test_variable_mapping() -> None:
3535
test_vars = TestVars()
3636
assert test_vars
37+
assert len(test_vars) == 1
3738

3839
assert test_vars.get_variable("foo") == "bar"
3940
assert test_vars["foo"] == "bar"

0 commit comments

Comments
 (0)