Remove test_booleans_l from test, it is bogus

This commit is contained in:
Dan Walsh 2013-10-24 11:26:00 -04:00 committed by Stephen Smalley
parent 52d52fe2d6
commit fc965a99c6
2 changed files with 0 additions and 6 deletions

View File

@ -67,12 +67,6 @@ class SepolicyTests(unittest.TestCase):
out, err = p.communicate()
self.assertSuccess(p.returncode, err)
def test_booleans_l(self):
"Verify sepolicy booleans -l fails"
p = Popen(['sepolicy', 'booleans', '-l'], stdout = PIPE)
out, err = p.communicate()
self.assertFailure(p.returncode)
def test_booleans_a(self):
"Verify sepolicy booleans -a works"
p = Popen(['sepolicy', 'booleans', '-a'], stdout = PIPE)