Skip to content

Commit 8a64688

Browse files
committed
CI fixes for debug
1 parent be812dc commit 8a64688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/unit/algorithms/SpatialPoolerTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,7 +1520,7 @@ TEST(SpatialPoolerTest, testinitMapColumn) {
15201520
{
15211521
// Test 1D.
15221522
SpatialPooler sp;
1523-
setup(sp, /*inputDimensions*/ {12}, /*columnDimensions*/ {4});
1523+
setup(sp, /*inputDimensions*/ 12, /*columnDimensions*/ 4);
15241524

15251525
EXPECT_EQ(1ul, sp.initMapColumn_(0));
15261526
EXPECT_EQ(4ul, sp.initMapColumn_(1));
@@ -1531,7 +1531,7 @@ TEST(SpatialPoolerTest, testinitMapColumn) {
15311531
{
15321532
// Test 1D with same dimensions of columns and inputs.
15331533
SpatialPooler sp;
1534-
setup(sp, /*inputDimensions*/ {4}, /*columnDimensions*/ {4});
1534+
setup(sp, /*inputDimensions*/ 4, /*columnDimensions*/ 4);
15351535

15361536
EXPECT_EQ(0ul, sp.initMapColumn_(0));
15371537
EXPECT_EQ(1ul, sp.initMapColumn_(1));

0 commit comments

Comments
 (0)