From 0fabb49aa76286e8431e94a8f6272d952dbfc2b0 Mon Sep 17 00:00:00 2001 From: Filipe Braida Date: Thu, 10 Sep 2020 17:25:56 -0300 Subject: [PATCH] Fixing after merge --- src/matlab.jl | 2 +- test/runtests.jl | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/matlab.jl b/src/matlab.jl index edacb50..62340c6 100644 --- a/src/matlab.jl +++ b/src/matlab.jl @@ -30,4 +30,4 @@ function generate_twospirals(; n_samples::Int = 2000, labels = [zeros(Int, N1); ones(Int, N1)] return convert(features, labels); -end \ No newline at end of file +end diff --git a/test/runtests.jl b/test/runtests.jl index cd69ce2..9190480 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -47,9 +47,6 @@ using Test @test size(data)[1] == samples @test size(data)[2] == features + 1 - @test size(data)[1] == samples - @test size(data)[2] == features + 1 - data = SyntheticDatasets.generate_friedman1(n_samples = samples, n_features = features)