Skip to content

Commit 4265fde

Browse files
refactor: more consistent name for variable
Co-authored-by: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com>
1 parent 9d357b0 commit 4265fde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tagstudio/tests/test_library.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ def test_add_field_tag(library: Library, entry_full, generate_tag):
190190
library.add_field_tag(entry_full, tag, tag_field.type_key)
191191

192192
# Then
193-
results = library.get_entry_full(entry_full.id)
194-
tag_field = results.tag_box_fields[0]
193+
result = library.get_entry_full(entry_full.id)
194+
tag_field = result.tag_box_fields[0]
195195
assert [x.name for x in tag_field.tags if x.name == tag_name]
196196

197197

0 commit comments

Comments
 (0)