We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd697c commit cd74ba3Copy full SHA for cd74ba3
flow/util/test/test_genElapsedTime.py flow/test/test_genElapsedTime.pyflow/util/test/test_genElapsedTime.py renamed to flow/test/test_genElapsedTime.py
@@ -4,18 +4,14 @@
4
from unittest.mock import patch
5
from unittest.mock import MagicMock
6
from io import StringIO
7
-import io
8
import sys
9
import os
10
import tempfile
11
-from datetime import datetime
12
-import argparse # argument parsing
13
-from pathlib import Path
14
import importlib # module reloading
15
16
# make sure the working dir is flow/
17
-sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
18
-os.chdir(os.path.dirname(os.path.abspath(__file__)))
+sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'util'))
+os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__))))
19
20
class TestElapsedTime(unittest.TestCase):
21
def setUp(self):
0 commit comments