mailinglist_script_failure: Add missing "os" import

The testcase was working without before, but that was only by
chance, because we're doing a wildcard import of the support
module. Since that module will disappear when we transition
the testsuite to pytest, best to import os explicitly now.

TN: U530-006
Change-Id: Iafec2b4e23a128f3cf0d962b15912dbe500d7202
This commit is contained in:
Joel Brobecker
2021-07-09 20:17:28 -07:00
parent 628a3220dc
commit fcd01b7e63

View File

@@ -1,4 +1,5 @@
from support import *
import os
class TestRun(TestCase):