summaryrefslogtreecommitdiff
path: root/docs/coding_conventions_python.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/coding_conventions_python.md')
-rw-r--r--docs/coding_conventions_python.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md
index 2b68703448..1ed27ee46a 100644
--- a/docs/coding_conventions_python.md
+++ b/docs/coding_conventions_python.md
@@ -317,7 +317,7 @@ At the time of this writing our tests are not very comprehensive. Looking at the
## Integration Tests
-Integration tests can be found in `lib/python/qmk/tests/test_cli_commands.py`. This is where CLI commands are actually run and their overall behavior is verified. We use [`subprocess`](https://docs.python.org/3.6/library/subprocess.html#module-subprocess) to launch each CLI command and a combination of checking output and returncode to determine if the right thing happened.
+Integration tests can be found in `lib/python/qmk/tests/test_cli_commands.py`. This is where CLI commands are actually run and their overall behavior is verified. We use [`subprocess`](https://docs.python.org/3.7/library/subprocess.html#module-subprocess) to launch each CLI command and a combination of checking output and returncode to determine if the right thing happened.
## Unit Tests