Cleanup: correct typo in class name

This commit is contained in:
Campbell Barton 2025-01-02 19:15:42 +11:00
parent 0b0fddb614
commit 94917bfd58
4 changed files with 16 additions and 10 deletions

View file

@ -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")

View file

@ -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")

View file

@ -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")

View file

@ -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()