Skip to content

Commit 9e7e93e

Browse files
committed
fix: missing newlines in error descriptions
1 parent 534b5dd commit 9e7e93e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scim2_tester/checkers/patch_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def check_add_attribute(
191191
context,
192192
status=Status.ERROR,
193193
reason=(
194-
f"Attribute '{urn}' was not added or has unexpected value"
194+
f"Attribute '{urn}' was not added or has unexpected value\n"
195195
f"Patched value: {patch_value}\n"
196196
f"Returned value: {actual_value}"
197197
),

scim2_tester/checkers/patch_replace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def check_replace_attribute(
184184
context,
185185
status=Status.ERROR,
186186
reason=(
187-
f"Attribute '{urn}' was not replaced or has unexpected value"
187+
f"Attribute '{urn}' was not replaced or has unexpected value\n"
188188
f"Patched value: {patch_value}\n"
189189
f"Returned value: {actual_value}"
190190
),

0 commit comments

Comments
 (0)