Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix Python 2.6 test error
Browse files Browse the repository at this point in the history
  • Loading branch information
vbraun committed Jul 12, 2015
1 parent 075228f commit c56991b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage_bootstrap/test/test_package.py
Expand Up @@ -31,7 +31,7 @@ def test_package(self):
pkg.tarball.filename.endswith('.tar.gz'))
self.assertTrue(pkg.tarball.filename.startswith('pari-') and
pkg.tarball.filename.endswith('.tar.gz'))
self.assertIsInstance(pkg.tarball, Tarball)
self.assertTrue(isinstance(pkg.tarball, Tarball))

def test_all(self):
pari = Package('pari')
Expand Down

0 comments on commit c56991b

Please sign in to comment.