Skip to content

Commit

Permalink
Improve tests and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sanosom committed Mar 31, 2017
1 parent 781638b commit b338643
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ xml = '''<?xml version="1.0" encoding="UTF-8"?>
<lang code="fr">Française</lang>
</languages>'''

file = '/tmp/test.pdf'
file = 'test.pdf'

try:
res = pxv.sendXML(xml, options)
Expand Down Expand Up @@ -78,7 +78,7 @@ json = '''{
}
}'''

file = '/tmp/test.pdf'
file = 'test.pdf'

try:
res = pxv.sendJSON(json, options)
Expand Down
2 changes: 1 addition & 1 deletion tests/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
}'''

file = '/tmp/test_json.pdf'
file = 'test_json.pdf'

try:
res = pxv.sendJSON(json, options)
Expand Down
2 changes: 1 addition & 1 deletion tests/xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<lang code="fr">Française</lang>
</languages>'''

file = '/tmp/test_xml.pdf'
file = 'test_xml.pdf'

try:
res = pxv.sendXML(xml, options)
Expand Down

0 comments on commit b338643

Please sign in to comment.