Skip to content

Commit e52d339

Browse files
committed
enable tests
1 parent 78c8fc1 commit e52d339

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_backend.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _run_test_case(self, output_names_with_port, feed_dict, **kwargs):
111111
kwargs["convert_var_to_const"] = False
112112
kwargs["constant_fold"] = False
113113
return self.run_test_case(feed_dict, [], output_names_with_port, **kwargs)
114-
'''
114+
115115
def _test_expand_dims_known_rank(self, idx):
116116
tf.reset_default_graph()
117117
x_val = make_xval([3, 4])
@@ -2975,7 +2975,7 @@ def test_Conv2DBackpropInput_valid(self):
29752975
_ = tf.nn.conv2d_backprop_input(input_sizes, filters, out_backprop, strides=[1, 1, 1, 1], padding='VALID',
29762976
name=_TFOUTPUT)
29772977
self._run_test_case([_OUTPUT], {_INPUT: input_sizes_val, _INPUT1: filters_val, _INPUT2: out_backprop_val})
2978-
'''
2978+
29792979
@check_opset_min_version(1, "CategoryMapper")
29802980
def test_hashtable_lookup(self):
29812981
filnm = "vocab.tmp"
@@ -2990,5 +2990,6 @@ def test_hashtable_lookup(self):
29902990
self._run_test_case([lookup_results.name], {_INPUT: query})
29912991
os.remove(filnm)
29922992

2993+
29932994
if __name__ == '__main__':
29942995
unittest_main()

0 commit comments

Comments
 (0)