Skip to content

Commit 7910bcd

Browse files
committed
fix: correct expected output for quoted string in test case
1 parent 37ca60e commit 7910bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow-core/tests/unit/serialization/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def test_truncate_rendered_value_exact_expected_output():
124124
(100, "True", prefix + "'True'" + suffix),
125125
(100, "{'key': 'value'}", prefix + "\"{'key': 'value'}\"" + suffix),
126126
(100, "test's", prefix + '"test\'s"' + suffix),
127-
(90, '"quoted"', prefix + '"quote' + suffix),
127+
(90, '"quoted"', prefix + '"quoted"' + suffix),
128128
]
129129

130130
for max_length, rendered, expected in test_cases:

0 commit comments

Comments
 (0)