Skip to content

Commit ab39fd3

Browse files
authored
Update test_solver.cpp
Signed-off-by: Yannick Stade <100073938+ystade@users.noreply.github.com>
1 parent 9cf70d4 commit ab39fd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/na/nasp/test_solver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ cz q[0], q[1];
179179
EXPECT_NO_THROW({
180180
const auto& pairs = na::NASolver::getOpsForSolver(circ, qc::Z, 1, true);
181181
EXPECT_EQ(pairs.size(), 1);
182-
EXPECT_EQ(pairs.front(), std::make_pair(0, 1));
182+
EXPECT_EQ(pairs.front(), (std::pair{0UL, 1UL}));
183183
});
184184
EXPECT_THROW(std::ignore =
185185
na::NASolver::getOpsForSolver(circ, qc::Z, 1, false),

0 commit comments

Comments
 (0)