diff options
author | Patrick Hilhorst | 2021-06-02 14:49:59 +0200 |
---|---|---|
committer | Patrick Hilhorst | 2021-06-02 14:49:59 +0200 |
commit | 9469433e341f7337308468bb4b9ccfff84b2951b (patch) | |
tree | e8e2d2939f3014e2e66e1ca9793b405caf129475 /nixos/lib | |
parent | 5a589b5ba8941d734e9c3aebbf2be2f50d7c32a5 (diff) |
nixos/tests/test-driver: document shell_interact
Diffstat (limited to 'nixos/lib')
-rw-r--r-- | nixos/lib/test-driver/test-driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/test-driver/test-driver.py b/nixos/lib/test-driver/test-driver.py index 90ae2e558ef5..6669c914f76e 100644 --- a/nixos/lib/test-driver/test-driver.py +++ b/nixos/lib/test-driver/test-driver.py @@ -459,7 +459,7 @@ class Machine: def shell_interact(self) -> None: """Allows you to interact with the guest shell - Should only be used during testing, not in the production test.""" + Should only be used during test development, not in the production test.""" self.connect() telnet = telnetlib.Telnet() telnet.sock = self.shell # type: ignore |