@@ -291,7 +291,7 @@ def test_get
291291 assert_equal ( { } , cookies . to_hash )
292292 assert_equal "OK" , body
293293 assert_equal "OK" , response . body
294- assert_kind_of Loofah ::HTML ::Document , html_document
294+ assert_kind_of Nokogiri ::HTML ::Document , html_document
295295 assert_equal 1 , request_count
296296 end
297297 end
@@ -307,7 +307,7 @@ def test_post
307307 assert_equal ( { } , cookies . to_hash )
308308 assert_equal "Created" , body
309309 assert_equal "Created" , response . body
310- assert_kind_of Loofah ::HTML ::Document , html_document
310+ assert_kind_of Nokogiri ::HTML ::Document , html_document
311311 assert_equal 1 , request_count
312312 end
313313 end
@@ -367,7 +367,7 @@ def test_redirect
367367 assert_response :redirect
368368 assert_response :found
369369 assert_equal "<html><body>You are being <a href=\" http://www.example.com/get\" >redirected</a>.</body></html>" , response . body
370- assert_kind_of Loofah ::HTML ::Document , html_document
370+ assert_kind_of Nokogiri ::HTML ::Document , html_document
371371 assert_equal 1 , request_count
372372
373373 follow_redirect!
0 commit comments