File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,13 @@ def test_generating_barcodes(
59
59
) -> None :
60
60
os .makedirs (TESTPATH , exist_ok = True )
61
61
62
- objects = gather_image_elements_into_html
62
+ image_elements = gather_image_elements_into_html
63
63
64
64
def append (x , y ) -> None :
65
- objects .append (OBJECTS .format (filename = x , name = y ))
65
+ image_elements .append (OBJECTS .format (filename = x , name = y ))
66
66
67
67
def append_img (x , y ) -> None :
68
- objects .append (IMAGES .format (filename = x , name = y ))
68
+ image_elements .append (IMAGES .format (filename = x , name = y ))
69
69
70
70
options = {}
71
71
bcode = get_barcode (codename , code )
@@ -87,7 +87,7 @@ def append_img(x, y) -> None:
87
87
filename = bcode .save (os .path .join (TESTPATH , codename ), options = opts )
88
88
append_img (os .path .basename (filename ), bcode .name )
89
89
else :
90
- objects .append (NO_PIL )
90
+ image_elements .append (NO_PIL )
91
91
92
92
93
93
@pytest .fixture (scope = "module" )
You can’t perform that action at this time.
0 commit comments