Commit 6d37a4a9 authored by Paul's avatar Paul
Browse files

Fix tidy errors

parent 4f73e0ba
...@@ -59,8 +59,8 @@ void operation_equal_test() ...@@ -59,8 +59,8 @@ void operation_equal_test()
simple_operation s{}; simple_operation s{};
migraph::operation op1 = s; migraph::operation op1 = s;
s.data = 2; s.data = 2;
migraph::operation op2 = op1; migraph::operation op2 = op1; // NOLINT
migraph::operation op3 = s; migraph::operation op3 = s; // NOLINT
EXPECT(s != op1); EXPECT(s != op1);
EXPECT(op2 == op1); EXPECT(op2 == op1);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment