Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
kupolak committed Jan 27, 2024
1 parent decc5b9 commit 7216f21
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/hu/test_anum.ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ let suite =
; ("test_is_not_valid", `Quick, test_is_not_valid)
]

let () = Alcotest.run "Anum" [ ("suite", suite) ]
let () = Alcotest.run "Hu.Anum" [ ("suite", suite) ]
2 changes: 1 addition & 1 deletion test/iso7064/test_mod_97_10.ml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ let suite =
; ("test_is_valid", `Quick, test_is_valid)
]

let () = Alcotest.run "Mod_37_2" [ ("suite", suite) ]
let () = Alcotest.run "Iso7064.Mod_37_2" [ ("suite", suite) ]
2 changes: 1 addition & 1 deletion test/pl/test_nip.ml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ let suite =
; ("test_format", `Quick, test_format)
]

let () = Alcotest.run "test_nip" [ ("suite", suite) ]
let () = Alcotest.run "Pl.Nip" [ ("suite", suite) ]
2 changes: 1 addition & 1 deletion test/pl/test_pesel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ let suite =
; ("test_is_valid", `Quick, test_is_valid)
]

let () = Alcotest.run "test_pesel" [ ("suite", suite) ]
let () = Alcotest.run "Pl.Pesel" [ ("suite", suite) ]
2 changes: 1 addition & 1 deletion test/pl/test_regon.ml
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ let suite =
; ("test_is_valid", `Quick, test_is_valid)
]

let () = Alcotest.run "My first test" [ ("suite", suite) ]
let () = Alcotest.run "Pl.Regon" [ ("suite", suite) ]
2 changes: 1 addition & 1 deletion test/tools/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(test
(name test_utils)
(libraries alcotest pl)
(libraries alcotest tools)
(modules test_utils))
2 changes: 1 addition & 1 deletion test/tools/test_utils.ml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ let test_clean () =
let suite =
[ ("is_digits", `Quick, test_is_digits); ("clean", `Quick, test_clean) ]

let () = run "Utils" [ ("tools", suite) ]
let () = run "Utils" [ ("Tools.Utils", suite) ]
2 changes: 1 addition & 1 deletion test/us/test_atin.ml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ let suite =
; ("test_is_not_valid", `Quick, test_is_not_valid)
]

let () = Alcotest.run "ATIN" [ ("suite", suite) ]
let () = Alcotest.run "Us.Atin" [ ("suite", suite) ]

0 comments on commit 7216f21

Please sign in to comment.