From af0cb1b576aab1401cd3bf47c3b8f6258fa2a00d Mon Sep 17 00:00:00 2001
From: baggepinnen <cont-frb@ulund.org>
Date: Fri, 7 Dec 2018 16:26:19 +0100
Subject: [PATCH] test passing

---
 test/runtests.jl | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/test/runtests.jl b/test/runtests.jl
index 20189a9..75039e2 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -1,5 +1,5 @@
-using LabProcesses, ControlSystems
-using Base.Test
+using LabProcesses, ControlSystems, DSP
+using Test
 
 # Reference generators
 r = PRBSGenerator(Int(4))
@@ -8,14 +8,14 @@ seq = [r() for i = 1:10]
 foreach(r,1:10_000)
 
 function test_sysfilter()
-        N = 10
-        u = randn(N)
-        b = [1, 1]
-        a = [1, 0.1, 1]
-	  sys = ss(tf(b,a,1))
+	N     = 10
+	u     = randn(N)
+	b     = [1, 1]
+	a     = [1, 0.1, 1]
+	sys   = ss(tf(b,a,1))
 	state = init_sysfilter(sys)
-       yf = filt(b,a,u)
-	  yff = similar(yf)
+	yf    = filt(b,a,u)
+	yff   = similar(yf)
 	for i in eachindex(u)
 		yff[i] = sysfilter!(state, sys, u[i])[1]
 	end
-- 
GitLab