summaryrefslogtreecommitdiff
path: root/test/dataset.rb
diff options
context:
space:
mode:
authorhelma@in-silico.ch <helma@in-silico.ch>2018-11-02 20:34:44 +0100
committerhelma@in-silico.ch <helma@in-silico.ch>2018-11-02 20:34:44 +0100
commit3a9c9332b660d35720ad4fa1f55ee0883e53aecd (patch)
tree0c4b552ba434c4e03ea6e7808ead5a2d4ecb4cec /test/dataset.rb
parent5b08a8c6d8e5567d253bec92d5bf5d18fd040cdc (diff)
warnings fixed, cleanup
Diffstat (limited to 'test/dataset.rb')
-rw-r--r--test/dataset.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dataset.rb b/test/dataset.rb
index 70d26d2..40aa334 100644
--- a/test/dataset.rb
+++ b/test/dataset.rb
@@ -23,9 +23,9 @@ class DatasetTest < MiniTest::Test
def test_import_pubchem
d = Dataset.from_pubchem_aid 1191
- assert_equal 87, d.compounds.size
+ assert_equal 86, d.compounds.size
assert_equal 3, d.features.size
- assert_equal ["Active"], d.values(d.compounds[10],d.features[2])
+ assert_equal ["Inactive"], d.values(d.compounds[10],d.features[2])
# TODO endpoint name
# TODO regression import
end