File: tests-import.patch

package info (click to toggle)
kineticstools 0.6.1%2Bgit20220223.1326a4d%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 22,140 kB
  • sloc: python: 3,503; makefile: 202; ansic: 104; sh: 55; xml: 19
file content (15 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix import statement for tests
Author: Afif Elghraoui <afif@ghraoui.name>
Forwarded: https://github.com/PacificBiosciences/kineticsTools/pull/75
Last-Update: 2015-10-29
Index: kineticstools/bin/testShared.py
===================================================================
--- kineticstools.orig/bin/testShared.py
+++ kineticstools/bin/testShared.py
@@ -1,5 +1,5 @@
 from multiprocessing.process import Process, current_process
-from src.kineticsTools.sharedArray import SharedArray
+from kineticsTools.sharedArray import SharedArray
 
 # Test script for making sure that shared memory backed numpy arrays work properly
 # FIXME -- migrate to test dir if possible