Skip to content

Commit

Permalink
Fix #10835 expect tests (#10924)
Browse files Browse the repository at this point in the history
Signed-off-by: teague hansen <thanse23@asu.edu>
  • Loading branch information
H-ANSEN authored Sep 16, 2024
1 parent faff7ff commit cc26034
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/expect-tests/dune_config_file/dune_config_test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
{ authors = Some [ "Author Name <author@example.com>" ]
; maintainers = Some [ "Maintainer Name <maintainer@example.com>" ]
; license = Some [ "LICENSE" ]
}
; experimental = []
}
Expand All @@ -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 <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
{ authors = Some [ "Author Name <author@example.com>" ]
; maintainers = Some [ "Maintainer Name <maintainer@example.com>" ]
; license = Some [ "LICENSE" ]
}
; experimental = []
}
Expand All @@ -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 <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
{ authors = Some [ "Author Name <author@example.com>" ]
; maintainers = Some [ "Maintainer Name <maintainer@example.com>" ]
; license = Some [ "LICENSE" ]
}
; experimental = []
}
Expand Down

0 comments on commit cc26034

Please sign in to comment.