Skip to content

Commit

Permalink
update defaults fixing failing test case
Browse files Browse the repository at this point in the history
Signed-off-by: teague hansen <thanse23@asu.edu>
  • Loading branch information
H-ANSEN committed Aug 28, 2024
1 parent 584a523 commit 9fdc492
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/dune_config_file/dune_config_file.ml
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ module Dune_config = struct
; action_stdout_on_success = Print
; action_stderr_on_success = Print
; project_defaults =
{ authors = Some [ "Author Name" ]
; maintainers = Some [ "Maintainer Name" ]
{ authors = Some [ "Author Name <author@example.com>" ]
; maintainers = Some [ "Maintainer Name <maintainer@example.com>" ]
; license = Some [ "LICENSE" ]
}
; experimental = []
Expand Down
12 changes: 6 additions & 6 deletions test/expect-tests/dune_config_file/dune_config_test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ 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" ]
{ authors = [ "Author Name <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
}
; experimental = []
Expand All @@ -51,8 +51,8 @@ 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" ]
{ authors = [ "Author Name <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
}
; experimental = []
Expand All @@ -74,8 +74,8 @@ 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" ]
{ authors = [ "Author Name <author@example.com>" ]
; maintainers = [ "Maintainer Name <maintainer@example.com>" ]
; license = [ "LICENSE" ]
}
; experimental = []
Expand Down

0 comments on commit 9fdc492

Please sign in to comment.