Skip to content

Commit

Permalink
remove duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
ikamensh committed Feb 4, 2025
1 parent 87336fb commit dc52275
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/test_edits.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}'"""
Expand Down

0 comments on commit dc52275

Please sign in to comment.