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

Commit

Permalink
python 3 unicode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
avidas committed Sep 8, 2014
1 parent c7d6f24 commit 38c8e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit_tests/invoices_test.py
Expand Up @@ -44,7 +44,7 @@ def test_find(self, mock):
def test_get_qr_code(self, mock):
height = "400"
width = "400"
qr_code = u'iVBORw0KGgoAAAANSURK5CYII='
qr_code = 'iVBORw0KGgoAAAANSURK5CYII='
mock.return_value = { 'image': qr_code }

response = self.invoice.get_qr_code(height, width)
Expand Down

0 comments on commit 38c8e9c

Please sign in to comment.