summaryrefslogtreecommitdiff
path: root/compiler/locomotiv/src/Node/Pull.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/locomotiv/src/Node/Pull.test.cpp')
-rw-r--r--compiler/locomotiv/src/Node/Pull.test.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/compiler/locomotiv/src/Node/Pull.test.cpp b/compiler/locomotiv/src/Node/Pull.test.cpp
index 53e78776b..ec58c48f1 100644
--- a/compiler/locomotiv/src/Node/Pull.test.cpp
+++ b/compiler/locomotiv/src/Node/Pull.test.cpp
@@ -45,16 +45,8 @@ TEST(NodeExecution_Pull, check_data_ready)
auto pull_data = locomotiv::make_data(pull_buf);
locomotiv::user_data(pull, std::move(pull_data));
-// The behavior of Pull is now consistent with that of other nodes.
-// - annot_data and annot_domain is available after evaluating that "pull" node.
-// TODO Remove this
-#if 0
- // Domain not ready yet
- ASSERT_ANY_THROW(locomotiv::NodeExecution::get().run(pull));
-
- // Set Domain
- locomotiv::annot_domain(pull, loco::Domain::Tensor);
-#endif
+ // The behavior of Pull is now consistent with that of other nodes.
+ // - annot_data and annot_domain is available after evaluating that "pull" node.
// Valid run
ASSERT_NO_THROW(locomotiv::NodeExecution::get().run(pull));