Skip to content

Commit 19ed87b

Browse files
committed
yeah
1 parent 6a885b7 commit 19ed87b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/basilisp/compiler_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def test_warn_on_redef_if_warn_on_redef_meta_missing(
531531
"""
532532
(def unique-djhvyz :a)
533533
(def unique-djhvyz :b)
534-
""".strip()
534+
"""
535535
)
536536
assert_matching_logs(
537537
"basilisp.lang.compiler.analyzer",
@@ -2477,7 +2477,7 @@ def test_multi_arity_fn_log_if_warning_enabled(
24772477
(fn
24782478
([] :a)
24792479
([v] (fn [v] v)))
2480-
""".strip(),
2480+
""",
24812481
opts={compiler.WARN_ON_UNUSED_NAMES: True},
24822482
)
24832483
assert_matching_logs(
@@ -3617,7 +3617,7 @@ def test_warning_for_nested_let_if_warning_enabled(
36173617
(let [v 4]
36183618
(let [v 5]
36193619
v))
3620-
""".strip(),
3620+
""",
36213621
opts={compiler.WARN_ON_UNUSED_NAMES: True},
36223622
)
36233623
assert_matching_logs(
@@ -3833,7 +3833,7 @@ def test_warning_for_nested_let_if_warning_enabled(
38333833
(letfn* [v (fn* v [] 4)]
38343834
(letfn* [v (fn* v [] 5)]
38353835
(v)))
3836-
""".strip(),
3836+
""",
38373837
opts={compiler.WARN_ON_UNUSED_NAMES: True},
38383838
)
38393839
assert_matching_logs(

0 commit comments

Comments
 (0)