diff options
author | Ryan <fauxpark@gmail.com> | 2022-03-05 11:20:34 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 00:20:34 +0000 |
commit | 7d41639d549c7db0763d6769a089794b6050c99f (patch) | |
tree | ed17d552c07f7397bbf63637d4b2d5cb15348822 /lib/python/qmk/tests | |
parent | 618aaa8ca725e63a0fcd610be7280a47d33ed15b (diff) | |
download | qmk_firmware-7d41639d549c7db0763d6769a089794b6050c99f.tar.gz qmk_firmware-7d41639d549c7db0763d6769a089794b6050c99f.zip |
Map data driven `DESCRIPTION` as string literal (#16523)
Diffstat (limited to 'lib/python/qmk/tests')
-rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index d5cf1841c9..d40d4bf573 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py @@ -259,7 +259,7 @@ def test_generate_config_h(): result = check_subcommand('generate-config-h', '-kb', 'handwired/pytest/basic') check_returncode(result) assert '# define DEVICE_VER 0x0001' in result.stdout - assert '# define DESCRIPTION handwired/pytest/basic' in result.stdout + assert '# define DESCRIPTION "handwired/pytest/basic"' in result.stdout assert '# define DIODE_DIRECTION COL2ROW' in result.stdout assert '# define MANUFACTURER none' in result.stdout assert '# define PRODUCT pytest' in result.stdout |