Skip to content

Commit 01d9610

Browse files
committed
Un-comment GENERATEs
1 parent bf2149a commit 01d9610

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tiledb/sm/tile/test/unit_arithmetic.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -580,12 +580,12 @@ TEST_CASE("domain_tile_offset 3d", "[arithmetic]") {
580580
using Dom64 = Dim64::domain_type;
581581

582582
SECTION("Rectangular prism examples") {
583-
const uint64_t d1_lower_bound = 0; // GENERATE(0, 3);
584-
const uint64_t d1_extent = 1; // GENERATE(1, 4);
585-
const uint64_t d2_lower_bound = 0; // GENERATE(0, 3);
586-
const uint64_t d2_extent = 1; // GENERATE(1, 4);
587-
const uint64_t d3_lower_bound = 0; // GENERATE(0, 3);
588-
const uint64_t d3_extent = 1; // GENERATE(1, 4);
583+
const uint64_t d1_lower_bound = GENERATE(0, 3);
584+
const uint64_t d1_extent = GENERATE(1, 4);
585+
const uint64_t d2_lower_bound = GENERATE(0, 3);
586+
const uint64_t d2_extent = GENERATE(1, 4);
587+
const uint64_t d3_lower_bound = GENERATE(0, 3);
588+
const uint64_t d3_extent = GENERATE(1, 4);
589589

590590
const Dim64 d1(
591591
d1_lower_bound, d1_lower_bound + (3 * d1_extent) - 1, d1_extent);

0 commit comments

Comments
 (0)