Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1041)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py

Issue 2715553002: Change all relative imports in webkitpy to absolute imports. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py
index e36c93d50cc66f4c595ab3d43a66b546e968eac3..00de7f374e9b1c0d3ae48b9c60f56f337c951fa8 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/xcodeproj_unittest.py
@@ -22,9 +22,10 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Unit test for xcodeproj.py."""
+
import unittest
-import xcodeproj
+from webkitpy.style.checkers import xcodeproj
class TestErrorHandler(object):

Powered by Google App Engine
This is Rietveld 408576698