Remove unused LOG var in test_stamp_pattern.py

A global var LOG is set in the tempest/scenario/test_stamp_pattern.py
however it's not used. The patch removes that together with logging
import.

Change-Id: I01e634f7595247cddbf8e391281bfe7e045abeaa
This commit is contained in:
Martin Kopec 2020-11-27 19:06:17 +00:00
parent 97cd23b1b1
commit b0b480c386
1 changed files with 0 additions and 2 deletions

View File

@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
import testtools
from tempest.common import utils
@ -24,7 +23,6 @@ from tempest.lib import exceptions as lib_exc
from tempest.scenario import manager
CONF = config.CONF
LOG = logging.getLogger(__name__)
class TestStampPattern(manager.ScenarioTest):