diff options
author | Paul Moore <paul@paul-moore.com> | 2019-04-30 13:21:32 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2019-04-30 13:21:32 -0400 |
commit | 613cb1183ad5bb341ddbf49cb5ff51f874ee4f58 (patch) | |
tree | 3812849934d105aa10a3d8165169bf4dc22b019b /tests/13-basic-attrs.py | |
parent | a15a87c332d6509e39a11305da234469a7a6e45a (diff) | |
download | libseccomp-613cb1183ad5bb341ddbf49cb5ff51f874ee4f58.tar.gz |
tests: fix a error message typo in 13-basic-attrs.py
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'tests/13-basic-attrs.py')
-rwxr-xr-x | tests/13-basic-attrs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/13-basic-attrs.py b/tests/13-basic-attrs.py index 6d65ca7..b4b54b9 100755 --- a/tests/13-basic-attrs.py +++ b/tests/13-basic-attrs.py @@ -54,7 +54,7 @@ def test(): raise RuntimeError("Failed getting Attr.CTL_LOG") f.set_attr(Attr.CTL_SSB, 1) if f.get_attr(Attr.CTL_SSB) != 1: - raise RuntimeError("Failed getting Attr.SPEC_ALLOW") + raise RuntimeError("Failed getting Attr.CTL_SSB") test() |