Skip to content

Commit 9201cb1

Browse files
author
stephanie
committed
update error in test file
1 parent 0fddfd2 commit 9201cb1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyodbc
2-
six
2+
#six
33
sqlalchemy
44
-e git+https://github.com/ODM2/geoalchemy.git@v0.7.4#egg=geoalchemy-0.7.4
55
shapely

tests/test_odm2/test_createservice.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def test_createDataset(self):
174174

175175

176176
# assert that this dataset has been successfully inserted
177-
res = self.engine.execute('SELECT * from DataSets')res.fetchall()
177+
res = self.engine.execute('SELECT * from DataSets').fetchall()
178178

179179
assert(len(res) == 1)
180180
assert(res[0]==dataset.DataSetID)
@@ -326,5 +326,5 @@ def test_createSimulation(self):
326326
# assert that this record has been successfully inserted
327327
res = self.engine.execute('SELECT * from Simulations').fetchall()
328328
assert(len(res) == 1)
329-
assert(res[0]=sim.SimulationID)
329+
assert(res[0]==sim.SimulationID)
330330

0 commit comments

Comments
 (0)