Skip to content

Commit

Permalink
Fix AABB ToString() test
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey authored Nov 14, 2023
1 parent 4138291 commit 2bd40c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/t/geometry/AxisAlignedBoundingBox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ TEST_P(AxisAlignedBoundingBoxPermuteDevices, ConstructorNoArg) {
EXPECT_EQ(aabb.GetDevice(), core::Device("CPU:0"));

// Print Information.
EXPECT_EQ(aabb.ToString(), "AxisAlignedBoundingBox[Float32, CPU:0]");
EXPECT_EQ(aabb.ToString(), "AxisAlignedBoundingBox[[0 0 0] - [0 0 0], Float32, CPU:0]");
}

TEST_P(AxisAlignedBoundingBoxPermuteDevices, Constructor) {
Expand Down

0 comments on commit 2bd40c0

Please sign in to comment.