aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/libexpr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/libexpr')
-rw-r--r--tests/unit/libexpr/primops.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/libexpr/primops.cc b/tests/unit/libexpr/primops.cc
index ce3b5d11f..71e838b32 100644
--- a/tests/unit/libexpr/primops.cc
+++ b/tests/unit/libexpr/primops.cc
@@ -1,6 +1,8 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>
+#include "eval-settings.hh"
+
#include "tests/libexpr.hh"
namespace nix {
@@ -614,7 +616,7 @@ namespace nix {
TEST_F(PrimOpTest, currentSystem) {
auto v = eval("builtins.currentSystem");
- ASSERT_THAT(v, IsStringEq(settings.thisSystem.get()));
+ ASSERT_THAT(v, IsStringEq(evalSettings.getCurrentSystem()));
}
TEST_F(PrimOpTest, derivation) {