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:
authorCampbell Barton <ideasman42@gmail.com>2018-07-03 08:12:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-03 08:12:24 +0300
commit646f8bdb4801b0376b3e4bd01bbac49a51c99940 (patch)
tree1844ac7a5a3f01da1b1ae2c1ce21cc1ff3d53de1 /tests/python/view_layer/test_scene_write_read.py
parent00fc1d70a70694973c53d4974ed21ef888532d0a (diff)
Cleanup: pep8
Diffstat (limited to 'tests/python/view_layer/test_scene_write_read.py')
-rw-r--r--tests/python/view_layer/test_scene_write_read.py36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/python/view_layer/test_scene_write_read.py b/tests/python/view_layer/test_scene_write_read.py
index 6c750d87987..92f3395d819 100644
--- a/tests/python/view_layer/test_scene_write_read.py
+++ b/tests/python/view_layer/test_scene_write_read.py
@@ -46,7 +46,7 @@ class UnitTesting(ViewLayerTesting):
self.assertTrue(compare_files(
filepath_doversion_json,
filepath_layers_json,
- ),
+ ),
"Run: test_scene_write_layers")
if do_read:
@@ -65,7 +65,7 @@ class UnitTesting(ViewLayerTesting):
self.assertTrue(compare_files(
filepath_read_json,
filepath_layers_json,
- ),
+ ),
"Scene dump files differ")
def test_scene_write_collections(self):
@@ -79,10 +79,10 @@ class UnitTesting(ViewLayerTesting):
filepath_layers_json = os.path.join(ROOT, 'layers_simple.json')
self.do_scene_write_read(
- filepath_layers,
- filepath_layers_json,
- (get_scene_collections,),
- False)
+ filepath_layers,
+ filepath_layers_json,
+ (get_scene_collections,),
+ False)
def test_scene_write_layers(self):
"""
@@ -95,10 +95,10 @@ class UnitTesting(ViewLayerTesting):
filepath_layers_json = os.path.join(ROOT, 'layers.json')
self.do_scene_write_read(
- filepath_layers,
- filepath_layers_json,
- (get_scene_collections, get_layers),
- False)
+ filepath_layers,
+ filepath_layers_json,
+ (get_scene_collections, get_layers),
+ False)
def test_scene_read_collections(self):
"""
@@ -112,10 +112,10 @@ class UnitTesting(ViewLayerTesting):
filepath_layers_json = os.path.join(ROOT, 'layers_simple.json')
self.do_scene_write_read(
- filepath_layers,
- filepath_layers_json,
- (get_scene_collections,),
- True)
+ filepath_layers,
+ filepath_layers_json,
+ (get_scene_collections,),
+ True)
def test_scene_read_layers(self):
"""
@@ -129,10 +129,10 @@ class UnitTesting(ViewLayerTesting):
filepath_layers_json = os.path.join(ROOT, 'layers.json')
self.do_scene_write_read(
- filepath_layers,
- filepath_layers_json,
- (get_scene_collections, get_layers),
- True)
+ filepath_layers,
+ filepath_layers_json,
+ (get_scene_collections, get_layers),
+ True)
# ############################################################