Skip to content

Commit 66a4222

Browse files
author
Amir Tocker
committed
Fix typo in test name
1 parent 2a3e04a commit 66a4222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def test_array_should_define_a_set_of_variables(self):
648648
transformation, options = cloudinary.utils.generate_transformation_string(**options)
649649
self.assertEqual('if_fc_gt_2,$z_5,$foo_$z_mul_2,c_scale,w_$foo_mul_200', transformation)
650650

651-
def test_dollar_key_should_define_a_varialbe(self):
651+
def test_dollar_key_should_define_a_variable(self):
652652
options = { "transformation":[ {"$foo":10 }, {"if":"face_count > 2"}, {"crop":"scale", "width":"$foo * 200 / face_count"}, {"if":"end"} ] }
653653
transformation, options = cloudinary.utils.generate_transformation_string(**options)
654654
self.assertEqual('$foo_10/if_fc_gt_2/c_scale,w_$foo_mul_200_div_fc/if_end', transformation)

0 commit comments

Comments
 (0)