summaryrefslogtreecommitdiff
path: root/zephyr/zmake/tests/test_project.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/zmake/tests/test_project.py')
-rw-r--r--zephyr/zmake/tests/test_project.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/zephyr/zmake/tests/test_project.py b/zephyr/zmake/tests/test_project.py
index 732e397354..3279d6ce31 100644
--- a/zephyr/zmake/tests/test_project.py
+++ b/zephyr/zmake/tests/test_project.py
@@ -2,17 +2,17 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import hypothesis
-import hypothesis.strategies as st
import pathlib
-import pytest
import string
import tempfile
+import hypothesis
+import hypothesis.strategies as st
+import pytest
+
import zmake.modules
import zmake.project
-
board_names = st.text(alphabet=set(string.ascii_lowercase) | {'_'},
min_size=1)
sets_of_board_names = st.lists(st.lists(board_names, unique=True))