From 6168b1b120b30375f6dc08548a42e01793227b3a Mon Sep 17 00:00:00 2001 From: Severin Leonhardt Date: Mon, 1 Aug 2016 08:06:51 +0200 Subject: [PATCH] Fix version check in schema_metadata/lookup test --- test/integration_tests/src/test_schema_metadata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration_tests/src/test_schema_metadata.cpp b/test/integration_tests/src/test_schema_metadata.cpp index 3eeaf596e..9cdcfc76b 100644 --- a/test/integration_tests/src/test_schema_metadata.cpp +++ b/test/integration_tests/src/test_schema_metadata.cpp @@ -1426,7 +1426,7 @@ BOOST_AUTO_TEST_CASE(frozen_types) { * @expected_result UDA and UDF can be looked up correctly */ BOOST_AUTO_TEST_CASE(lookup) { - if (version < "2.1.0") return; + if (version < "2.2.0") return; test_utils::execute_query(session, "CREATE KEYSPACE lookup WITH replication = " "{ 'class' : 'SimpleStrategy', 'replication_factor' : 3 }");