summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc')
-rw-r--r--src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc b/src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc
index 09df17beb2..3bbdc05378 100644
--- a/src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc
+++ b/src/components/policy/policy_external/test/sql_pt_ext_representation_storage_test.cc
@@ -98,9 +98,9 @@ TEST_F(
// Act
const std::string value_12345 = "12345";
const std::string query_insert_12345 =
- "INSERT INTO `application` (`id`, `memory_kb`,"
+ "INSERT INTO `application` (`id`, "
" `heart_beat_timeout_ms`, `keep_context`) VALUES ('" +
- value_12345 + "', 5, 10, 1)";
+ value_12345 + "', 10, 1)";
// Assert
ASSERT_TRUE(query_wrapper_->Exec(query_insert_12345));
@@ -110,9 +110,9 @@ TEST_F(
// Act
const std::string value_123 = "123";
const std::string query_insert_123 =
- "INSERT INTO `application` (`id`, `memory_kb`,"
+ "INSERT INTO `application` (`id`, "
" `heart_beat_timeout_ms`, `keep_context`) VALUES ('" +
- value_123 + "', 10, 7, 0)";
+ value_123 + "', 7, 0)";
// Assert
ASSERT_TRUE(query_wrapper_->Exec(query_insert_123));