Skip to content

Commit 66d5ebf

Browse files
committed
remove curly brackets
1 parent 91a4448 commit 66d5ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_complex_float_norm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace xt
2222
{
2323

2424
TEST(xblas, norm_complex_float) {
25-
xt::xarray<std::complex<float>> a = {std::complex<float>({1.0f, 2.0f}), std::complex<float>({3.0f, 4.0f})};
25+
xt::xarray<std::complex<float>> a = {std::complex<float>(1.0f, 2.0f), std::complex<float>(3.0f, 4.0f)};
2626
auto res = linalg::norm(a);
2727

2828
EXPECT_NEAR(res.real(), 5.4772f, 1e-3f);

0 commit comments

Comments
 (0)