From cc260345db57ab639db6363b2dc89072a1492832 Mon Sep 17 00:00:00 2001 From: Teague Hansen <62850132+H-ANSEN@users.noreply.github.com> Date: Mon, 16 Sep 2024 05:39:13 -0400 Subject: [PATCH] Fix #10835 expect tests (#10924) Signed-off-by: teague hansen --- .../dune_config_file/dune_config_test.ml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 = [] }