summaryrefslogtreecommitdiff
path: root/unittests/helpers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-06-30 13:16:42 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2024-07-11 11:53:39 +0300
commit0d7bb776e2d97d406b726b90090bbfa8df13232b (patch)
tree78817e1840f0741439871682b3c25a1e40a3067f /unittests/helpers.py
parentc2552527fb2f607052c7aed633b67dbb19f06e38 (diff)
downloadmeson-0d7bb776e2d97d406b726b90090bbfa8df13232b.tar.gz
Move OptionKey in the option source file.
Diffstat (limited to 'unittests/helpers.py')
-rw-r--r--unittests/helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/helpers.py b/unittests/helpers.py
index 7483f51b7..761241308 100644
--- a/unittests/helpers.py
+++ b/unittests/helpers.py
@@ -11,9 +11,10 @@ from contextlib import contextmanager
from mesonbuild.compilers import detect_c_compiler, compiler_from_language
from mesonbuild.mesonlib import (
- MachineChoice, is_osx, is_cygwin, EnvironmentException, OptionKey, MachineChoice,
+ MachineChoice, is_osx, is_cygwin, EnvironmentException, MachineChoice,
OrderedSet
)
+from mesonbuild.options import OptionKey
from run_tests import get_fake_env