Skip to content

Commit adb8bb3

Browse files
committed
Fix tests to use ih/iw instead of deprecated oh/ow
1 parent a6d509d commit adb8bb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cloudinary-core/src/test/java/com/cloudinary/test/CloudinaryTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -605,9 +605,9 @@ public void testShouldSupportAutoWidth(String width, String result){
605605
}
606606

607607
@Test
608-
public void testShouldSupportOhOw(){
609-
String trans = new Transformation().width("ow").height("oh").crop("crop").generate();
610-
assertEquals("c_crop,h_oh,w_ow", trans);
608+
public void testShouldSupportIhIw(){
609+
String trans = new Transformation().width("iw").height("ih").crop("crop").generate();
610+
assertEquals("c_crop,h_ih,w_iw", trans);
611611
}
612612

613613
@Test

0 commit comments

Comments
 (0)