Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Commit

Permalink
Use range instead of xrange
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Patel committed Nov 2, 2016
1 parent c91c4f1 commit c587fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit_tests/invoice_template_test.py
Expand Up @@ -8,7 +8,7 @@ class TestInvoiceTemplate(unittest.TestCase):

def setUp(self):
self.invoice_template_attributes = {
"name": "Hours Template_".join([random.choice(string.letters) for i in xrange(5)]),
"name": "Hours Template_".join([random.choice(string.letters) for i in range(5)]),
"default": True,
"unit_of_measure": "HOURS",
"template_data": {
Expand Down

0 comments on commit c587fe9

Please sign in to comment.