Skip to content

Commit

Permalink
Add TODOs instead for now as this can be BC breaking to fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Sep 29, 2020
1 parent 4d5216d commit c4fd526
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ public function testGetProductConcreteIdsByProductListIds(): void

// Assert
$this->assertIsArray($productConcreteIds);
$this->assertSame([$productTransfer->getIdProductConcrete()], $productConcreteIds);
// TODO: use assertSame() once the actual return result is of int[], and not string[]
$this->assertEquals([$productTransfer->getIdProductConcrete()], $productConcreteIds);
}

/**
Expand Down

0 comments on commit c4fd526

Please sign in to comment.