Skip to content

Commit dc09e26

Browse files
committed
cod
1 parent 5030859 commit dc09e26

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

_unittests/ut_reference/test_reference_back.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,12 @@ def _filtered_test_items(self) -> dict[str, dict[str, TestItem]]:
8989
continue
9090
if not name.startswith(
9191
(
92-
"test_scatter_elements",
93-
"test_gather",
9492
"test_cast_like",
9593
"test_concat",
94+
"test_constant",
95+
"test_gather",
96+
"test_scatter_elements",
97+
"test_slice",
9698
"test_softmax",
9799
)
98100
):

_unittests/ut_reference/test_reference_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def test_inline_2_functions_recursive(self):
508508
A=np.arange(9).reshape((3, 3)).astype(np.float32),
509509
B=np.arange(9).reshape((3, 3)).astype(np.float32),
510510
)
511-
expected = ref.run(None, feeds)[0]
511+
ref.run(None, feeds)[0]
512512

513513

514514
if __name__ == "__main__":

0 commit comments

Comments
 (0)