Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2017-03-31 18:09:35 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-03-31 18:37:45 +0300
commit1f17b72efee9b76550da884915feefc876ff6b70 (patch)
treea8d24ea90abb71a51dcba6b3b8ff514f78c13171 /tests/python/render_layer/test_active_collection.py
parentd1f402acfdfb453b1a3ecb06b486023c74dfea68 (diff)
Layers unittest: Breaking pep8, but getting tests to work again
I will investigate this further later. The big problem is that the way I'm running tests if I have any error (e.g., ImportError) the pass still pass.
Diffstat (limited to 'tests/python/render_layer/test_active_collection.py')
-rw-r--r--tests/python/render_layer/test_active_collection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/render_layer/test_active_collection.py b/tests/python/render_layer/test_active_collection.py
index 8d904809151..37401046181 100644
--- a/tests/python/render_layer/test_active_collection.py
+++ b/tests/python/render_layer/test_active_collection.py
@@ -2,12 +2,12 @@
# Importing - Same For All Render Layer Tests
# ############################################################
-from render_layer_common import *
import unittest
import os
import sys
sys.path.append(os.path.dirname(__file__))
+from render_layer_common import *
# ############################################################