From b8599dc48aad2c2fc94b9bf86d99f2f79683e0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20K=C3=A4chele?= Date: Fri, 3 Jun 2016 14:35:46 +0200 Subject: [PATCH] Update edge_detector_test.rb --- test/edge_detect/edge_detector_test.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/edge_detect/edge_detector_test.rb b/test/edge_detect/edge_detector_test.rb index 961028a..51f1f92 100644 --- a/test/edge_detect/edge_detector_test.rb +++ b/test/edge_detect/edge_detector_test.rb @@ -2,7 +2,6 @@ require 'test_helper' class EdgeDetectorTest < Minitest::Test - def test_airplane input = File.expand_path('../../pictures/airplane.png', __FILE__) image = ChunkyPNG::Image.from_file(input) @@ -31,7 +30,7 @@ class EdgeDetectorTest < Minitest::Test sobel.detect_edges.save(output_sobel) end - def test_robot + def test_asics input = File.expand_path('../../pictures/asics.png', __FILE__) image = ChunkyPNG::Image.from_file(input) @@ -44,4 +43,4 @@ class EdgeDetectorTest < Minitest::Test standard.detect_edges.save(output_standard) sobel.detect_edges.save(output_sobel) end -end \ No newline at end of file +end