forked from Lainports/opnsense-ports
20 lines
721 B
Text
20 lines
721 B
Text
--- test/cache.test.orig 2017-10-14 02:48:11 UTC
|
|
+++ test/cache.test
|
|
@@ -45,7 +45,7 @@ test critcl-cache-1.0.4 {cache, wrong\#a
|
|
|
|
test critcl-cache-2.0 {cache, default, home directory} -body {
|
|
critcl::cache
|
|
-} -match glob -result $::env(HOME)/.critcl/*
|
|
+} -match glob -result [file normalize $::env(HOME)/.critcl/*]
|
|
|
|
test critcl-cache-2.1 {cache, redirecting cache} -setup {
|
|
set here [critcl::cache]
|
|
@@ -54,7 +54,7 @@ test critcl-cache-2.1 {cache, redirectin
|
|
} -cleanup {
|
|
critcl::cache $here
|
|
unset here
|
|
-} -match glob -result $::env(HOME)/FOO
|
|
+} -match glob -result [file normalize $::env(HOME)/FOO]
|
|
|
|
# -------------------------------------------------------------------------
|
|
testsuiteCleanup
|