We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 502469a commit e446151Copy full SHA for e446151
src/DIRAC/RequestManagementSystem/private/test/Test_RequestValidator.py
@@ -8,6 +8,7 @@
8
test cases for RequestValidator
9
"""
10
import unittest
11
+from mock import MagicMock as Mock, patch
12
13
from DIRAC.RequestManagementSystem.Client.Request import Request
14
from DIRAC.RequestManagementSystem.Client.Operation import Operation
@@ -36,6 +37,7 @@ def tearDown(self):
36
37
del self.operation
38
del self.file
39
40
+ @patch("DIRAC.ConfigurationSystem.Client.PathFinder.getSystemInstance", new=Mock())
41
def testValidator(self):
42
"""validator test"""
43
0 commit comments