summaryrefslogtreecommitdiffhomepage
path: root/test/test_go_isolation.py
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2020-11-16 20:37:01 +0300
committerMax Romanov <max.romanov@nginx.com>2020-11-16 20:37:01 +0300
commit567f0a7b3049f4532524ac35cb232cbeedb868bf (patch)
tree8a2eb4f43b5750c6e4fa47d7278a0b2e6e9508ce /test/test_go_isolation.py
parent6d2b60ff3e6f905b81c6d2fc6595b39250e3a586 (diff)
downloadunit-567f0a7b3049f4532524ac35cb232cbeedb868bf.tar.gz
unit-567f0a7b3049f4532524ac35cb232cbeedb868bf.tar.bz2
Tests: fixing tests interrupt in terminal.
KeyboardInterrupt re-raised.
Diffstat (limited to 'test/test_go_isolation.py')
-rw-r--r--test/test_go_isolation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_go_isolation.py b/test/test_go_isolation.py
index c68925b9..e3a0a210 100644
--- a/test/test_go_isolation.py
+++ b/test/test_go_isolation.py
@@ -36,7 +36,7 @@ class TestGoIsolation(TestApplicationGo):
try:
nogroup_gid = grp.getgrnam('nogroup').gr_gid
nogroup = 'nogroup'
- except:
+ except KeyError:
nogroup_gid = grp.getgrnam('nobody').gr_gid
nogroup = 'nobody'