Skip to content

Commit 12ad035

Browse files
committed
chore: update unit tests
1 parent 6e1660b commit 12ad035

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/unit/domains/numbers/v1/models/shared/test_numbers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ def test_voice_configuration_est_valid_expects_parsed_data():
104104
data = {
105105
"type": "EST",
106106
"appId": "",
107-
"trunkId": "test_app",
107+
"trunkId": "test_trunk",
108108
"serviceId": "",
109109
"lastUpdatedTime": "2025-02-25T09:32:27.437Z",
110110
"scheduledVoiceProvisioning": {
111111
"type": "EST",
112112
"lastUpdatedTime": "2025-02-25T09:32:27.437Z",
113113
"status": "ACTIVE",
114114
"appId": "",
115-
"trunkId": "test_app",
115+
"trunkId": "test_trunk",
116116
"serviceId": ""
117117
}
118118
}
@@ -121,13 +121,13 @@ def test_voice_configuration_est_valid_expects_parsed_data():
121121
config = voice_configuration_adapter.validate_python(data)
122122

123123
assert config.type == "EST"
124-
assert config.trunk_id == "test_app"
124+
assert config.trunk_id == "test_trunk"
125125
assert (config.last_updated_time ==
126126
datetime(2025, 2, 25, 9, 32, 27, 437000,
127127
tzinfo=timezone.utc))
128128
assert config.scheduled_voice_provisioning is not None
129129
assert config.scheduled_voice_provisioning.type == "EST"
130-
assert config.scheduled_voice_provisioning.trunk_id == "test_app"
130+
assert config.scheduled_voice_provisioning.trunk_id == "test_trunk"
131131
assert config.scheduled_voice_provisioning.status == "ACTIVE"
132132

133133

0 commit comments

Comments
 (0)