From 480a3fa7fcbd8fcecfc3a750def1d5376fe2486e Mon Sep 17 00:00:00 2001 From: AI-Mozi Date: Tue, 6 Feb 2024 15:43:50 +0100 Subject: [PATCH] use correct method in spec --- spec/converters/csv_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/converters/csv_spec.rb b/spec/converters/csv_spec.rb index 2aca97a..8d569f1 100644 --- a/spec/converters/csv_spec.rb +++ b/spec/converters/csv_spec.rb @@ -35,7 +35,7 @@ it 'must convert masscan file to csv and write it into output' do tempfile = Tempfile.new(['ronin-masscan', '.json']) - subject.convert(masscan_file, tempfile) + subject.masscan_file_to_csv(masscan_file, tempfile) tempfile.rewind csv = tempfile.readlines(chomp: true)