projects
/
python-pysam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dd0f19
)
Correct an error in the upstream test suite.
author
Charles Plessy
<plessy@debian.org>
Sat, 19 Apr 2014 05:14:53 +0000
(14:14 +0900)
committer
Charles Plessy
<plessy@debian.org>
Sat, 19 Apr 2014 05:14:53 +0000
(14:14 +0900)
This is already corrected upstrem.
debian/patches/offline-tests.patch
patch
|
blob
|
history
diff --git
a/debian/patches/offline-tests.patch
b/debian/patches/offline-tests.patch
index 968b5bac595f2fce18019b1579a09675241e1b90..022dd10f91d725d9677ecbc0ef948e383cf6ba45 100644
(file)
--- a/
debian/patches/offline-tests.patch
+++ b/
debian/patches/offline-tests.patch
@@
-1164,7
+1164,7
@@
Description: Create a copy of the test suite script and remove those
+
+ def testFetchErrors( self ):
+ self.assertRaises( ValueError, self.file.fetch )
-+ self.assertRaises(
Value
Error, self.file.fetch, "chr1", -1, 10 )
++ self.assertRaises(
Index
Error, self.file.fetch, "chr1", -1, 10 )
+ self.assertRaises( ValueError, self.file.fetch, "chr1", 20, 10 )
+
+ def testLength( self ):