summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/toxbank-investigation-types.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/toxbank-investigation-types.rb b/test/toxbank-investigation-types.rb
index a5fa45d..59b41e6 100644
--- a/test/toxbank-investigation-types.rb
+++ b/test/toxbank-investigation-types.rb
@@ -473,8 +473,8 @@ class TBInvestigationNoISADataValidPOST < MiniTest::Test
@g.query(:predicate => RDF::TB.isPublished){|r| assert_match /false/, r[2].to_s}
# DELETE
- #response = OpenTox::RestClientWrapper.delete uri.to_s, {}, { :subjectid => $pi[:subjectid] }
- #assert_equal "200", response.code.to_s
+ response = OpenTox::RestClientWrapper.delete uri.to_s, {}, { :subjectid => $pi[:subjectid] }
+ assert_equal "200", response.code.to_s
end
def test_post_type_nodata_put_error
@@ -508,8 +508,8 @@ class TBInvestigationNoISADataValidPOST < MiniTest::Test
# DELETE
- #response = OpenTox::RestClientWrapper.delete uri.to_s, {}, { :subjectid => $pi[:subjectid] }
- #assert_equal "200", response.code.to_s
+ response = OpenTox::RestClientWrapper.delete uri.to_s, {}, { :subjectid => $pi[:subjectid] }
+ assert_equal "200", response.code.to_s
end
end