Skip to content
Snippets Groups Projects
Unverified Commit b2809b8b authored by Daniel's avatar Daniel
Browse files

FIX: Removed numpy dependency.

parent f7ce0019
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,6 @@
import caosdb as db
from nose import with_setup
from nose.tools import assert_equal
import numpy as np
import pytest
......@@ -71,4 +70,4 @@ def test_issue_18():
C1 = db.Entity(name="C").retrieve()
pids = [p.id for p in C1.parents]
assert_equal(np.unique(pids), len(pids), "Duplicate parents.")
assert_equal(len(set(pids)), len(pids), "Duplicate parents.")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment