Fixes Bug 1004138 - Fix for Bug 992275 Breaks on Python < 2.7.

This is the offending code:

import unittest2 as unittest
from unittest.case import SkipTest

The fix is:

remove the import line
change the "from" line to:

from unittest2.case import SkipTest

Change-Id: I321eb401da8dec6c2732f3913af611bf78f684f5
1 file changed