diff --git a/README.md b/README.md index f3715964d711184fdd8044d8aba7e2d9ca3c1c7c..408e54263ef7828f3ab61e1d3f50ac58f4232eac 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[](https://gitlab.control.lth.se/processes/LabProcesses.jl/commits/master) +[](https://gitlab.control.lth.se/processes/LabProcesses.jl/commits/master) + # LabProcesses This package contains an (programming- as well as connection-) interface to serve as a base for the implementation of lab-process software. The first example of diff --git a/test/runtests.jl b/test/runtests.jl index 51d3ce3b5a5818288f4b05eb6305a4420d6e03ca..d6bb9b9848a042552a43fbe1a50f1663e89911fc 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,7 +2,7 @@ using LabProcesses using Base.Test # Reference generators -r = PRBSGenerator(Int(1)) +r = PRBSGenerator(Int(4)) seq = [r() for i = 1:10] -@test all(seq .== [0, 0, 1, 0, 0, 1, 1, 0, 0, 1]) +@test all(seq .== [1,0,1,0,0,0,0,0,0,0]) foreach(r,1:10_000)