--- a/topi/tests/python/test_topi_upsampling.py
+++ b/topi/tests/python/test_topi_upsampling.py
@@ -22,7 +22,7 @@ def verify_upsampling(batch, in_channel, in_height, in_width, scale, layout='NCH
raise NotImplementedError(
'Layout not supported {} '.format(layout))
- B = topi.nn.upsampling(A, scale, layout=layout)
+ B = topi.nn.upsampling(A, scale, layout=layout, method='BILINEAR')
b_np = topi.testing.upsampling_python(a_np, scale, layout)