Skip to content

Commit

Permalink
Issue-47 apparently even fixtures need to be valid python 3 for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachmann1234 committed Aug 13, 2016
1 parent decbf17 commit 85a7349
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions diff_cover/tests/fixtures/hello.py
@@ -1,2 +1,2 @@
print "hello"
print unknown_var
print("hello")
print(unknown_var)
4 changes: 2 additions & 2 deletions diff_cover/tests/fixtures/hi.py
@@ -1,2 +1,2 @@
print "hello"
print unknown_var
print("hello")
print(unknown_var)

0 comments on commit 85a7349

Please sign in to comment.