From 76050421dd17c10acc4c06b9ab737dfb56586ff2 Mon Sep 17 00:00:00 2001 From: Pieter De Gendt Date: Mon, 4 Nov 2024 20:56:47 +0100 Subject: [PATCH] TEST --- src/west/manifest.py | 1 + tests/test_commands.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/west/manifest.py b/src/west/manifest.py index da557d35..ef32ad8d 100644 --- a/src/west/manifest.py +++ b/src/west/manifest.py @@ -498,6 +498,7 @@ def _assert(cond): # # Public functions +# Add a random comment # def manifest_path() -> str: diff --git a/tests/test_commands.py b/tests/test_commands.py index 8838bb3b..ed42fd1d 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -10,6 +10,7 @@ def test_parse_git_version(): # White box test for git parsing behavior. + # add this assert gv(b'git version 2.25.1\n') == (2, 25, 1) assert gv(b'git version 2.28.0.windows.1\n') == (2, 28, 0) assert gv(b'git version 2.24.3 (Apple Git-128)\n') == (2, 24, 3)