summaryrefslogtreecommitdiff
path: root/test/compound.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2016-10-13 14:39:04 +0200
committerChristoph Helma <helma@in-silico.ch>2016-10-13 14:39:04 +0200
commit9e99495ecbff147218023c136bade9e56a502fed (patch)
tree54ba18b16c2b20cc173dd7668416ea7e1a233b7d /test/compound.rb
parentc3a7e75cb36908da36d155cad5478800e32aaf5f (diff)
descriptor tests fixed
Diffstat (limited to 'test/compound.rb')
-rw-r--r--test/compound.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compound.rb b/test/compound.rb
index d1cfb3d..19f51fd 100644
--- a/test/compound.rb
+++ b/test/compound.rb
@@ -124,7 +124,7 @@ print c.sdf
def test_physchem
c = OpenTox::Compound.from_smiles "CC(=O)CC(C)C"
- assert_equal PhysChem::OPENBABEL.size, c.calculated_properties.size
- assert_equal PhysChem::OPENBABEL.size, c.calculated_properties(["PhysChem::OPENBABEL"]).size
+ assert_equal PhysChem::OPENBABEL.size, c.properties.size
+ assert_equal PhysChem::OPENBABEL.size, c.properties([PhysChem::OPENBABEL]).size
end
end