[Test] fix typo

- also change capitalization since all other WBs use uppercase letters in its name
This commit is contained in:
Uwe
2022-02-14 00:38:31 +01:00
parent 7c2beac6de
commit ed35988362
2 changed files with 3 additions and 3 deletions

View File

@@ -27,8 +27,8 @@ class TestWorkbench ( Workbench ):
"Test workbench object"
def __init__(self):
self.__class__.Icon = FreeCAD.getResourceDir() + "Mod/Test/Resources/icons/TestWorkbench.svg"
self.__class__.MenuText = "Test framework"
self.__class__.ToolTip = "Test framework"
self.__class__.MenuText = "Test Framework"
self.__class__.ToolTip = "Test Framework"
def Initialize(self):
import TestGui

View File

@@ -166,7 +166,7 @@ class TestInsertFeatureCmd:
def GetResources(self):
return {'Pixmap' : 'Std_Tool1',
'MenuText': 'Insert a TestFeauture',
'MenuText': 'Insert a TestFeature',
'ToolTip' : 'Insert a TestFeature in the active Document'}
#---------------------------------------------------------------------------