Skip to content

Commit f41eec5

Browse files
committed
fix: sdk version in tests
1 parent 72c6eab commit f41eec5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ def test_system_properties_defaults(self):
604604
assert props.device_model is not None
605605
assert props.is_debug is False
606606
assert props.app_version == "1.0.0"
607-
assert props.sdk_version == "0.0.1"
607+
assert props.sdk_version == "aptabase-python@0.1.0"
608608

609609
def test_system_properties_custom(self):
610610
"""Test SystemProperties with custom values."""

tests/test_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_default_initialization(self):
2222
assert props.device_model == platform.machine()
2323
assert props.is_debug is False
2424
assert props.app_version == "1.0.0"
25-
assert props.sdk_version == "0.0.1"
25+
assert props.sdk_version == "aptabase-python@0.1.0"
2626

2727
def test_custom_initialization(self):
2828
"""Test SystemProperties with custom values."""
@@ -52,7 +52,7 @@ def test_partial_initialization(self):
5252
assert props.is_debug is True
5353
# Defaults should still apply
5454
assert props.locale == "en-US"
55-
assert props.sdk_version == "0.0.1"
55+
assert props.sdk_version == "aptabase-python@0.1.0"
5656

5757
def test_to_dict_structure(self):
5858
"""Test to_dict returns correct structure."""

0 commit comments

Comments
 (0)