diff options
Diffstat (limited to 'tests/tests-lib.sh')
-rwxr-xr-x | tests/tests-lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tests-lib.sh b/tests/tests-lib.sh index 25079b9..06a5b54 100755 --- a/tests/tests-lib.sh +++ b/tests/tests-lib.sh @@ -120,8 +120,8 @@ test_ok() { uuid() { # Taken from: # https://serverfault.com/a/799198 - od -xN20 /dev/urandom | \ - head -1 | \ + od -xN20 /dev/urandom | + head -1 | awk '{OFS="-"; print $2$3,$4,$5,$6,$7$8$9}' } |