Skip to content

Commit

Permalink
API v3 VSTLPE - update more taxlot properties export tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aviveiros11 committed Aug 12, 2020
1 parent b5be93c commit fa93c40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions seed/tests/test_tax_lot_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_csv_export(self):
columns.append(c['name'])

# call the API
url = reverse_lazy('api:v2.1:tax_lot_properties-export')
url = reverse_lazy('api:v3:tax_lot_properties-export')
response = self.client.post(
url + '?{}={}&{}={}&{}={}'.format(
'organization_id', self.org.pk,
Expand Down Expand Up @@ -123,7 +123,7 @@ def test_csv_export_with_notes(self):
columns.append(c['name'])

# call the API
url = reverse_lazy('api:v2.1:tax_lot_properties-export')
url = reverse_lazy('api:v3:tax_lot_properties-export')
response = self.client.post(
url + '?{}={}&{}={}&{}={}'.format(
'organization_id', self.org.pk,
Expand Down Expand Up @@ -159,7 +159,7 @@ def test_xlxs_export(self):
columns.append(c['name'])

# call the API
url = reverse_lazy('api:v2.1:tax_lot_properties-export')
url = reverse_lazy('api:v3:tax_lot_properties-export')
response = self.client.post(
url + '?{}={}&{}={}&{}={}'.format(
'organization_id', self.org.pk,
Expand Down Expand Up @@ -191,7 +191,7 @@ def test_json_export(self):
columns.append(c['name'])

# call the API
url = reverse_lazy('api:v2.1:tax_lot_properties-export')
url = reverse_lazy('api:v3:tax_lot_properties-export')
response = self.client.post(
url + '?{}={}&{}={}&{}={}'.format(
'organization_id', self.org.pk,
Expand Down

0 comments on commit fa93c40

Please sign in to comment.