Skip to content

Commit e6e2f44

Browse files
committed
fix: Fix test for PilotMonitoring
1 parent 91a2927 commit e6e2f44

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

tests/Integration/Monitoring/Test_MonitoringReporter.py

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -839,16 +839,27 @@ def setUp(self):
839839
# Test data for the PilotMonitoring type
840840
self.pilotMonitoringData = [
841841
{
842-
"HostName": "blabla",
843-
"SiteDirector": "blabla",
844-
"Site": "blabla",
845-
"CE": "blabla",
846-
"Queue": "blabla",
847-
"Status": "blabla",
842+
"HostName": "lhcbvoboxcertif00.cern.ch",
843+
"SiteDirector": "SiteDirector-CERN",
844+
"Site": "LCG.CERN.cern",
845+
"CE": "ce503.cern.ch",
846+
"Queue": "ce503.cern.ch:ce503.cern.ch-condor",
847+
"Status": "failed",
848848
"NumTotal": "10",
849849
"NumSucceded": "3",
850850
"timestamp": 1458226213,
851-
}
851+
},
852+
{
853+
"HostName": "lhcbvoboxcertif00.cern.ch",
854+
"SiteDirector": "SiteDirector-CNAF",
855+
"Site": "LCG.CNAF.it",
856+
"CE": "ce504.cern.ch",
857+
"Queue": "ce504.cern.ch:ce504.cern.ch-condor",
858+
"Status": "failed",
859+
"NumTotal": "7",
860+
"NumSucceded": "1",
861+
"timestamp": 1458226213,
862+
},
852863
]
853864

854865
def tearDown(self):

0 commit comments

Comments
 (0)