From 3e5eba7c32d8e54d2e04a4bcd38bd616b79c8aff Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 9 Jul 2021 19:45:29 -0700 Subject: [PATCH] logger_error: Add missing "os" import in testcase script 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: I3288e3940d1370fcb0c2c6b0dcd71e05cacc2eb5 --- testsuite/tests/LC27-012__logger_error/run_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testsuite/tests/LC27-012__logger_error/run_test.py b/testsuite/tests/LC27-012__logger_error/run_test.py index 5683783..c07e8f0 100644 --- a/testsuite/tests/LC27-012__logger_error/run_test.py +++ b/testsuite/tests/LC27-012__logger_error/run_test.py @@ -1,4 +1,5 @@ from support import * +import os class TestRun(TestCase):