mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 07:22:12 -05:00
Cleanup: correct typo in class name
This commit is contained in:
parent
0b0fddb614
commit
94917bfd58
4 changed files with 16 additions and 10 deletions
|
@ -5,11 +5,13 @@
|
|||
|
||||
import unittest
|
||||
|
||||
from check_utils import (sliceCommandLineArguments,
|
||||
SceiptUnitTesting)
|
||||
from check_utils import (
|
||||
ScriptUnitTesting,
|
||||
sliceCommandLineArguments,
|
||||
)
|
||||
|
||||
|
||||
class UnitTesting(SceiptUnitTesting):
|
||||
class UnitTesting(ScriptUnitTesting):
|
||||
def test_modulesEnabled(self):
|
||||
self.checkScript("modules_enabled")
|
||||
|
||||
|
|
|
@ -5,11 +5,13 @@
|
|||
|
||||
import unittest
|
||||
|
||||
from check_utils import (sliceCommandLineArguments,
|
||||
SceiptUnitTesting)
|
||||
from check_utils import (
|
||||
ScriptUnitTesting,
|
||||
sliceCommandLineArguments,
|
||||
)
|
||||
|
||||
|
||||
class UnitTesting(SceiptUnitTesting):
|
||||
class UnitTesting(ScriptUnitTesting):
|
||||
def test_numpyImports(self):
|
||||
self.checkScript("numpy_import")
|
||||
|
||||
|
|
|
@ -5,11 +5,13 @@
|
|||
|
||||
import unittest
|
||||
|
||||
from check_utils import (sliceCommandLineArguments,
|
||||
SceiptUnitTesting)
|
||||
from check_utils import (
|
||||
ScriptUnitTesting,
|
||||
sliceCommandLineArguments,
|
||||
)
|
||||
|
||||
|
||||
class UnitTesting(SceiptUnitTesting):
|
||||
class UnitTesting(ScriptUnitTesting):
|
||||
def test_requestsImports(self):
|
||||
self.checkScript("requests_import")
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ def runScriptInBlender(blender_directory, script):
|
|||
return process.returncode == 0
|
||||
|
||||
|
||||
class SceiptUnitTesting(unittest.TestCase):
|
||||
class ScriptUnitTesting(unittest.TestCase):
|
||||
def checkScript(self, script):
|
||||
# Parse arguments which are not handled by unit testing framework.
|
||||
args = parseArguments()
|
||||
|
|
Loading…
Reference in a new issue