We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 793b8aa commit fc92edcCopy full SHA for fc92edc
1 file changed
tests/test_data_loader.py
@@ -6,10 +6,13 @@ def test_load():
6
linesFile = mapmanagercore.data.getLinesFile()
7
8
dfLines = pd.read_csv(linesFile)
9
- print('=== test_load')
+ print('=== test_load dfLines')
10
print(dfLines)
11
12
pointsFile = mapmanagercore.data.getPointsFile()
13
+ dfPoints = pd.read_csv(pointsFile)
14
+ print('=== test_load dfPoints')
15
+ print(dfPoints)
16
17
ch1 = mapmanagercore.data.getTiffChannel_1()
18
0 commit comments