Changeset 61292 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 30, 2016 1:03:50 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py
r61291 r61292 309 309 """ 310 310 311 def _formatSeriedNameForGraph(self, oSubject): 312 """ 313 Format the subject name for the graph. 314 """ 315 return str(oSubject); 316 311 317 def _getSortedIds(self, oSet, fByTotal = None): 312 318 """ … … 349 355 for idKey in aidSorted: 350 356 oSubject = oSet.dSubjects[idKey]; 351 asNames.append( oSubject.sName);357 asNames.append(self._formatSeriedNameForGraph(oSubject)); 352 358 353 359 oTable = WuiHlpGraphDataTable('Period', asNames); … … 487 493 return sHtml; 488 494 495 def _formatSeriedNameForGraph(self, oSubject): 496 return oSubject.sName; 497 489 498 def generateReportBody(self): 490 499 self._sTitle = 'Test Case Failures'; … … 526 535 return sHtml; 527 536 537 def _formatSeriedNameForGraph(self, oSubject): 538 return self._formatName(oSubject); 539 528 540 def generateReportBody(self): 529 541 self._sTitle = 'Test Case Variation Failures'; … … 557 569 sHtml += u'</td>'; 558 570 return sHtml; 571 572 def _formatSeriedNameForGraph(self, oSubject): 573 return oSubject.sName; 559 574 560 575 def generateReportBody(self):
Note:
See TracChangeset
for help on using the changeset viewer.