Skip to content

Commit b53d7ef

Browse files
committed
fix unittests
1 parent b617c5b commit b53d7ef

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

RobotFrameworkService/Config.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
class Config:
2+
class Default:
3+
taskfolder = 'tasks'
4+
25
"""
36
Service Config as Singleton
47
"""
@@ -8,9 +11,9 @@ class Config:
811

912
def __new__(cls):
1013
if cls._instance is None:
11-
print('Creating the object')
14+
print('Creatin the object')
1215
cls._instance = super(Config, cls).__new__(cls)
13-
# Put any initialization here.
16+
cls._instance.cmd_args = Config.Default()
1417
return cls._instance
1518

1619
@property

0 commit comments

Comments
 (0)