Skip to content
This repository was archived by the owner on Aug 13, 2020. It is now read-only.

Commit adacd2c

Browse files
committed
Moved [<UseCulture>] attribute to its proper place
This seems to be one of those rare cases where Git's merge feature actually didn't do the right thing by itself.
1 parent 6e88cda commit adacd2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Numsense.UnitTests/NumeralProperties.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ let ``negative Dutch is the inverse of positive Dutch`` x =
7979
sprintf "min %s" (Numeral.toDutch x) =! actualDutch
8080
Some -x =! actualInteger
8181

82-
[<UseCulture("sv-SE")>]
8382
[<Property(QuietOnSuccess = true)>]
8483
let ``tryParseRussian is the inverse of toRussian`` x =
8584
test <@ Some x = (x |> Numeral.toRussian |> Numeral.tryParseRussian) @>
@@ -110,6 +109,7 @@ let ``negative Catalan is the inverse of positive Catalan`` x =
110109
sprintf "menys %s" (Numeral.toCatalan x) =! actualCatalan
111110
Some -x =! actualInteger
112111

112+
[<UseCulture("sv-SE")>]
113113
[<Property(QuietOnSuccess = true)>]
114114
let ``tryParseSwedish is the inverse of toSwedish`` x =
115115
test <@ Some x = (x |> Numeral.toSwedish |> Numeral.tryParseSwedish) @>

0 commit comments

Comments
 (0)