diff --git a/cpp/test/cucumber/lib/runner.cpp b/cpp/test/cucumber/lib/runner.cpp index 4bf3943604..b0e7343f44 100644 --- a/cpp/test/cucumber/lib/runner.cpp +++ b/cpp/test/cucumber/lib/runner.cpp @@ -24,9 +24,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include "cucumber_bdd/runner.hpp" @@ -44,10 +44,10 @@ std::string type_name(); void TestRunnerBase::loadFeature(const std::string& path) { // std::regex testFilter = std::regex(::testing::GTEST_FLAG(filter), std::regex::extended); - std::string featureContents = gherkin::slurp(path); - gherkin::parser parser; + std::string featureContents = cucumber::gherkin::slurp(path); + cucumber::gherkin::parser parser; cucumber::messages::gherkin_document doc = parser.parse(path, featureContents); - gherkin::pickle_compiler compiler; + cucumber::gherkin::pickle_compiler compiler; if (doc.feature.has_value()) { for (cucumber::messages::pickle scenario : compiler.compile(doc, path)) { diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index e6ddbaa60d..8c48178089 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -21,7 +21,7 @@ def vaticle_dependencies(): git_repository( name = "vaticle_dependencies", remote = "https://github.com/vaticle/dependencies", - commit = "f3ab3f76e2f82f1f8b12464d95948b637f655f5d", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies + commit = "a0a07919a96c56c565b9a4b5633c47d3d60c6ac3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies ) def vaticle_typeql():