Skip to content

Commit ec56d0e

Browse files
authored
Fix validates models record_property serialization errors (#9912)
1 parent 439b186 commit ec56d0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/functional/test_no_event_streams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_no_event_stream_unless_allowed(record_property):
4141
# Store the service and operation in
4242
# PyTest custom properties
4343
record_property(
44-
'aws_service', model.service_model.service_id
44+
'aws_service', model.service_model.service_name
4545
)
4646
record_property('aws_operation', model.name)
4747
supported_commands = '\n'.join(_ALLOWED_COMMANDS)

tests/functional/test_shadowing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_no_shadowed_builtins(
6969
# Store the service and operation in
7070
# PyTest custom properties
7171
record_property(
72-
'aws_service', model.service_model.service_id
72+
'aws_service', model.service_model.service_name
7373
)
7474
record_property('aws_operation', model.name)
7575
# Then we are shadowing or prefixing a top level argument

0 commit comments

Comments
 (0)