From d5af247c97e7b3a5b8d4a8006c31dcb95c897903 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 30 Dec 2020 16:26:17 +1100 Subject: [PATCH] docs: fix simple typo, remaning -> remaining There is a small typo in tests/nodeenv_test.py. Should read `remaining` rather than `remaning`. --- tests/nodeenv_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nodeenv_test.py b/tests/nodeenv_test.py index bb1ec7f..d3a92c4 100644 --- a/tests/nodeenv_test.py +++ b/tests/nodeenv_test.py @@ -83,7 +83,7 @@ def test_print_node_versions(cap_logging_info): assert printed.endswith('\n13.1.0\t13.2.0\t13.3.0\t13.4.0\t13.5.0') tabs_per_line = [line.count('\t') for line in printed.splitlines()] # 8 items per line = 7 tabs - # The last line contains the remaning 5 items + # The last line contains the remaining 5 items assert tabs_per_line == [7] * 60 + [4]