Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
haneslinger committed Jan 17, 2024
1 parent 32065a3 commit 1251740
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions seed/tests/test_meter_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,7 @@ def test_bulk_import_duplicate_dates(self):

property_view = self.property_view_factory.get_property_view()
url = reverse('api:v3:property-meters-list', kwargs={'property_pk': property_view.id})
url += "?organization_id=" + str(self.org.id)

payload = {
'type': 'Electric',
Expand All @@ -561,6 +562,7 @@ def test_bulk_import_duplicate_dates(self):
meter_pk = response.json()['id']

url = reverse('api:v3:property-meter-readings-list', kwargs={'property_pk': property_view.id, 'meter_pk': meter_pk})
url += "?organization_id=" + str(self.org.id)

# prepare the data in bulk format
reading1 = {
Expand Down

0 comments on commit 1251740

Please sign in to comment.