summary refs log tree commit diff
path: root/lib/tests/modules.sh
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-04-04 16:55:45 +0200
committerProfpatsch <mail@profpatsch.de>2018-05-06 23:58:36 +0200
commitcd5736116c971ed08826b71a15a2221233b3d44f (patch)
tree936800e16966c98d6cbdbf555669ac89c5db7574 /lib/tests/modules.sh
parentb16a69289aae7a8aeb7d0410649764d9d2328e2f (diff)
downloadnixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar.gz
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar.bz2
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar.lz
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar.xz
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.tar.zst
nixpkgs-cd5736116c971ed08826b71a15a2221233b3d44f.zip
lib/types: clear up coercedTo description
Diffstat (limited to 'lib/tests/modules.sh')
-rwxr-xr-xlib/tests/modules.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tests/modules.sh b/lib/tests/modules.sh
index 45fd2d624e1..c6b3fd912a9 100755
--- a/lib/tests/modules.sh
+++ b/lib/tests/modules.sh
@@ -136,11 +136,11 @@ checkConfigOutput "true" "$@" ./define-module-check.nix
 # Check coerced value.
 checkConfigOutput "\"42\"" config.value ./declare-coerced-value.nix
 checkConfigOutput "\"24\"" config.value ./declare-coerced-value.nix ./define-value-string.nix
-checkConfigError 'The option value .* in .* is not.*string or signed integer.*' config.value ./declare-coerced-value.nix ./define-value-list.nix
+checkConfigError 'The option value .* in .* is not.*string or signed integer convertible to it' config.value ./declare-coerced-value.nix ./define-value-list.nix
 
 # Check coerced value with unsound coercion
 checkConfigOutput "12" config.value ./declare-coerced-value-unsound.nix
-checkConfigError 'The option value .* in .* is not.*8 bit signed integer.* or string.*' config.value ./declare-coerced-value-unsound.nix ./define-value-string-bigint.nix
+checkConfigError 'The option value .* in .* is not.*8 bit signed integer.* or string convertible to it' config.value ./declare-coerced-value-unsound.nix ./define-value-string-bigint.nix
 checkConfigError 'unrecognised JSON value' config.value ./declare-coerced-value-unsound.nix ./define-value-string-arbitrary.nix
 
 cat <<EOF