Skip to content

Commit

Permalink
Updated Enterprise OData Report headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mjriley committed Dec 12, 2024
1 parent 75cce7f commit e52b732
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion corehq/apps/enterprise/enterprise.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def __init__(self, account, couch_user):

@property
def headers(self):
return [_('Project Space'), _('Report Names'), _('Number of rows')]
return [_('Project Space'), _('Name'), _('Number of Rows')]

def total_for_domain(self, domain_obj):
return self.export_fetcher.get_export_count(domain_obj.name)
Expand Down
2 changes: 1 addition & 1 deletion corehq/apps/enterprise/tests/test_enterprise.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class EnterpriseODataReportTests(SimpleTestCase):
def test_headers(self):
report = self._create_report_for_domains()
self.assertEqual(report.headers, [
'Project Space', 'Report Names', 'Number of rows',
'Project Space', 'Name', 'Number of Rows',
])

def test_total_number_display_odata_reports_across_enterprise(self):
Expand Down

0 comments on commit e52b732

Please sign in to comment.