From dc522750e2aa4a950ad5604469d3e167fe5ba42e Mon Sep 17 00:00:00 2001 From: Ilya Kamen Date: Tue, 4 Feb 2025 09:58:29 +0100 Subject: [PATCH] remove duplicate test --- test/test_edits.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/test_edits.py b/test/test_edits.py index 800dd7c..b1a1999 100644 --- a/test/test_edits.py +++ b/test/test_edits.py @@ -38,15 +38,6 @@ def test_call(state: State): assert s_out == s_expected -def test_string_specific_len(state: State): - s_in = """'%5s' % CLASS_NAMES[labels[j]]""" - s_expected = """f'{CLASS_NAMES[labels[j]]:>5}'""" - - state.aggressive = True - s_out, count = code_editor.fstringify_code_by_line(s_in, state) - assert s_out == s_expected - - def test_string_specific_len_right_aligned(state: State): s_in = """'%5s' % CLASS_NAMES[labels[j]]""" s_expected = """f'{CLASS_NAMES[labels[j]]:>5}'"""