aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-07-30 12:54:18 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-07-30 13:00:40 +0200
commitfba625e9a06308364f0c0e6728a9d2195b9354a0 (patch)
treef26a1979f4c5733331c11832a0256234a4a8b38b /searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
parentb53df1fcba1dae72a6e78c7892bc7b51408d4348 (diff)
Use proper scope for enum constants.
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp')
-rw-r--r--searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp b/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
index ce07858ea0b..f76743b9480 100644
--- a/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
@@ -216,9 +216,9 @@ setupLiveAttributes(AttributesConfigBuilder::AttributeVector &attributes)
attributes.push_back(setupFastSearchAttribute("a0"));
attributes.push_back(setupFastSearchAndMoreAttribute("a1"));
attributes.push_back(setupFastSearchAttribute("a2"));
- attributes.back().datatype = AttributesConfig::Attribute::INT8;
+ attributes.back().datatype = AttributesConfig::Attribute::Datatype::INT8;
attributes.push_back(setupFastSearchAttribute("a3"));
- attributes.back().collectiontype = AttributesConfig::Attribute::ARRAY;
+ attributes.back().collectiontype = AttributesConfig::Attribute::Collectiontype::ARRAY;
attributes.push_back(setupFastSearchAttribute("a4"));
attributes.back().createifnonexistent = true;
}