Skip to content

Commit 4cea291

Browse files
committed
Fix test name
Signed-off-by: Ganesan Ramalingam <[email protected]>
1 parent c8578cf commit 4cea291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/function_libs/torch_lib/e2e_ops_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,9 +520,9 @@ def forward(self, x):
520520
)
521521
_testing.assert_onnx_program(onnx_program)
522522

523-
def test_my_index_put(self):
523+
def test_index_put(self):
524524
def test(x_shape, index_list, update_shape, testname):
525-
with self.subTest(testname="my_index_put_" + testname):
525+
with self.subTest(testname="index_put_" + testname):
526526
indices = [
527527
(torch.tensor(index, dtype=torch.int64) if index is not None else None)
528528
for index in index_list

0 commit comments

Comments
 (0)