From a38ea7abdf1539c41079827f82ec52167b0f1e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Mestre?= Date: Tue, 2 Apr 2024 19:26:45 +0100 Subject: [PATCH] Fix typo --- sycl/unittests/Extensions/CommandGraph/Update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/unittests/Extensions/CommandGraph/Update.cpp b/sycl/unittests/Extensions/CommandGraph/Update.cpp index fc291a3691489..44814b6a54f60 100644 --- a/sycl/unittests/Extensions/CommandGraph/Update.cpp +++ b/sycl/unittests/Extensions/CommandGraph/Update.cpp @@ -323,7 +323,7 @@ TEST_F(WholeGraphUpdateTest, UnsupportedNodeType) { // Test that using an update graph that contains unsupported node types // results in an error. buffer Buffer{range<1>{1}}; - wro auto NodeA = Graph.add(EmptyKernel); + auto NodeA = Graph.add(EmptyKernel); auto NodeB = Graph.add(EmptyKernel, experimental::property::node::depends_on(NodeA)); auto NodeC =