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
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-19 18:48:11 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-19 19:18:05 +0300
commita4f2ebc78da4e10e65e864a16d2e621c7c79103d (patch)
tree7beb45939ff3eb15c6b1c5e3b0fcc305e97c93d0 /tests
parent424839e3c2d950fce315f9eefcd1334356f43f8d (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3700
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_run_operators.py2
-rw-r--r--tests/python/bl_test.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/bl_run_operators.py b/tests/python/bl_run_operators.py
index aae78a84132..9a3f801b04a 100644
--- a/tests/python/bl_run_operators.py
+++ b/tests/python/bl_run_operators.py
@@ -136,7 +136,7 @@ def filter_op_list(operators):
def reset_blend():
bpy.ops.wm.read_factory_settings()
for scene in bpy.data.scenes:
- # reduce range so any bake action doesnt take too long
+ # reduce range so any bake action doesn't take too long
scene.frame_start = 1
scene.frame_end = 5
diff --git a/tests/python/bl_test.py b/tests/python/bl_test.py
index 0cb322a21b1..ceb5811438a 100644
--- a/tests/python/bl_test.py
+++ b/tests/python/bl_test.py
@@ -181,7 +181,7 @@ def main():
sys.exit(1)
if md5 != md5_new:
- print(" Running: %s\n MD5 Recieved: %s\n MD5 Expected: %s" % (run, md5_new, md5))
+ print(" Running: %s\n MD5 Received: %s\n MD5 Expected: %s" % (run, md5_new, md5))
sys.exit(1)
print(" Success: %s" % run)