VirtualBox

Changeset 61292 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
May 30, 2016 1:03:50 PM (9 years ago)
Author:
vboxsync
Message:

arg. more bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py

    r61291 r61292  
    309309    """
    310310
     311    def _formatSeriedNameForGraph(self, oSubject):
     312        """
     313        Format the subject name for the graph.
     314        """
     315        return str(oSubject);
     316
    311317    def _getSortedIds(self, oSet, fByTotal = None):
    312318        """
     
    349355                for idKey in aidSorted:
    350356                    oSubject = oSet.dSubjects[idKey];
    351                     asNames.append(oSubject.sName);
     357                    asNames.append(self._formatSeriedNameForGraph(oSubject));
    352358
    353359                oTable = WuiHlpGraphDataTable('Period', asNames);
     
    487493        return sHtml;
    488494
     495    def _formatSeriedNameForGraph(self, oSubject):
     496        return oSubject.sName;
     497
    489498    def generateReportBody(self):
    490499        self._sTitle = 'Test Case Failures';
     
    526535        return sHtml;
    527536
     537    def _formatSeriedNameForGraph(self, oSubject):
     538        return self._formatName(oSubject);
     539
    528540    def generateReportBody(self):
    529541        self._sTitle = 'Test Case Variation Failures';
     
    557569        sHtml += u'</td>';
    558570        return sHtml;
     571
     572    def _formatSeriedNameForGraph(self, oSubject):
     573        return oSubject.sName;
    559574
    560575    def generateReportBody(self):
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette