Skip to content

Commit 470001d

Browse files
committed
Enable decimal type collection tests
1 parent e887b00 commit 470001d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/Cassandra/CollectionsIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function scalarCassandraTypes() {
3434
array(Type::bigint(), array(new Bigint("1"), new Bigint("2"), new Bigint("3"))),
3535
array(Type::blob(), array(new Blob("x"), new Blob("y"), new Blob("z"))),
3636
array(Type::boolean(), array(true, false, true, false)),
37-
#array(Type::decimal(), array(new Decimal(1.1), new Decimal(2.2), new Decimal(3.3))),
37+
array(Type::decimal(), array(new Decimal(1.1), new Decimal(2.2), new Decimal(3.3))),
3838
array(Type::double(), array(1.1, 2.2, 3.3, 4.4)),
3939
array(Type::float(), array(new Float(1.0), new Float(2.2), new Float(2.2))),
4040
array(Type::inet(), array(new Inet("127.0.0.1"), new Inet("127.0.0.2"), new Inet("127.0.0.3"))),

0 commit comments

Comments
 (0)