We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744d292 commit 971deb6Copy full SHA for 971deb6
tests/test_util.py
@@ -1,12 +1,12 @@
1
import os
2
import shutil
3
-from clang_tools.util import check_os, download_file, unpack_file
+from clang_tools.util import check_install_os, download_file, unpack_file
4
5
TEST_REPO = "https://github.com/cpp-linter/cpp-linter-action"
6
7
-def test_check_os():
8
- system = check_os()
9
- assert system in ("linux", "windos", "macosx")
+def test_check_install_os():
+ install_os = check_install_os()
+ assert install_os in ("linux", "windos", "macosx")
10
11
def test_download_file():
12
url = f"{TEST_REPO}/blob/master/README.md"
0 commit comments