Skip to content

Commit bfa5b5a

Browse files
committed
Fix failing EMR unit test on Python versions older than Python 3.12.
1 parent f16306f commit bfa5b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/customizations/emr/test_add_steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_custom_jar_step_with_all_fields(self):
235235
'ActionOnFailure=TERMINATE_CLUSTER,'
236236
'LogUri="TestLogUri",'
237237
'EncryptionKeyArn="TestEncryptionKeyArn",'
238-
'Properties=k1=v1\,k2=v2\,k3'
238+
'Properties=k1=v1\\,k2=v2\\,k3'
239239
)
240240
expected_result = {
241241
'JobFlowId': 'j-ABC',

0 commit comments

Comments
 (0)