SWDEV-454667 - Fix Unit_hipGraphAddNodeTypeEventWait_Positive_Basic test case

Change-Id: I68c6ce4d0622a7bcc5908f2901c568cbaa18c448
This commit is contained in:
Vladana Stojiljkovic
2024-04-08 12:32:17 +02:00
parent ec2b63b0c1
commit ee9da46aab
3 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -440,8 +440,8 @@ TEST_CASE("Unit_hipGraphAddNodeTypeEventWait_Positive_Basic") {
// Create a event wait node in graph
hipGraphNodeParams wait_node_params = {};
rec_node_params.type = hipGraphNodeTypeWaitEvent;
rec_node_params.eventWait.event = event;
wait_node_params.type = hipGraphNodeTypeWaitEvent;
wait_node_params.eventWait.event = event;
HIP_CHECK(hipGraphAddNode(&event_wait_node, graph, &event_rec_node, 1, &wait_node_params));
// Instantiate and launch the graph