diff --git a/test/expect-tests/dune_config_file/dune_config_test.ml b/test/expect-tests/dune_config_file/dune_config_test.ml index 41caa4df0d3..4c7ff2e58bc 100644 --- a/test/expect-tests/dune_config_file/dune_config_test.ml +++ b/test/expect-tests/dune_config_file/dune_config_test.ml @@ -28,9 +28,9 @@ let%expect_test "cache-check-probability 0.1" = ; action_stdout_on_success = Print ; action_stderr_on_success = Print ; project_defaults = - { authors = [ "Author Name " ] - ; maintainers = [ "Maintainer Name " ] - ; license = [ "LICENSE" ] + { authors = Some [ "Author Name " ] + ; maintainers = Some [ "Maintainer Name " ] + ; license = Some [ "LICENSE" ] } ; experimental = [] } @@ -51,9 +51,9 @@ let%expect_test "cache-storage-mode copy" = ; action_stdout_on_success = Print ; action_stderr_on_success = Print ; project_defaults = - { authors = [ "Author Name " ] - ; maintainers = [ "Maintainer Name " ] - ; license = [ "LICENSE" ] + { authors = Some [ "Author Name " ] + ; maintainers = Some [ "Maintainer Name " ] + ; license = Some [ "LICENSE" ] } ; experimental = [] } @@ -74,9 +74,9 @@ let%expect_test "cache-storage-mode hardlink" = ; action_stdout_on_success = Print ; action_stderr_on_success = Print ; project_defaults = - { authors = [ "Author Name " ] - ; maintainers = [ "Maintainer Name " ] - ; license = [ "LICENSE" ] + { authors = Some [ "Author Name " ] + ; maintainers = Some [ "Maintainer Name " ] + ; license = Some [ "LICENSE" ] } ; experimental = [] }