Skip to content

Commit

Permalink
Merge branch 'master' of github.com:TheChymera/labbookdb
Browse files Browse the repository at this point in the history
  • Loading branch information
TheChymera committed Nov 26, 2019
2 parents 68e4b48 + 11c5e0f commit 25c2536
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion labbookdb/tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from labbookdb.db import add

def test_load():
session, engine = add.load_session("~/somepath.db")
session, engine = add.load_session("/tmp/somepath.db")
session.close()
engine.dispose()
2 changes: 1 addition & 1 deletion labbookdb/tests/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from labbookdb.db import add

def test_related_entry_separators():
session, engine = add.load_session("~/somepath.db")
session, engine = add.load_session("/tmp/somepath.db")
with pytest.raises(BaseException) as excinfo:
add.get_related_ids(session, engine, "Animal:external_ids.AnimalExternalIdentifier:database.ETH/AIC/cdb&#&identifier.275511")
assert excinfo.value.args[0] == 'No entry was found with a value of "275511" on the "identifier" column of the "AnimalExternalIdentifier" CATEGORY, in the database.'
Expand Down

0 comments on commit 25c2536

Please sign in to comment.