changeset 752:ff0ef711c388 feature/laplace_opset

Remove obsolete file
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 19 Mar 2021 17:12:43 +0100
parents f94feb005e7d
children fc83d672be36
files test/runtests.jl test/test_utils.jl
diffstat 2 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
diff -r f94feb005e7d -r ff0ef711c388 test/runtests.jl
--- a/test/runtests.jl	Fri Mar 19 16:56:58 2021 +0100
+++ b/test/runtests.jl	Fri Mar 19 17:12:43 2021 +0100
@@ -1,4 +1,3 @@
-include("test_utils.jl")
 using Test
 using Glob
 
diff -r f94feb005e7d -r ff0ef711c388 test/test_utils.jl
--- a/test/test_utils.jl	Fri Mar 19 16:56:58 2021 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-"""
-    cmp_fields(s1,s2)
-
-Compares the fields of two structs s1, s2, using the == operator.
-"""
-function cmp_fields(s1::T,s2::T) where T
-    f = fieldnames(T)
-    return getfield.(Ref(s1),f) == getfield.(Ref(s2),f)
-end