You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/FSharpPlus.Tests/Parsing.fs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -112,12 +112,12 @@ module Parsing =
112
112
| Like "(%%%s)""hello"->()
113
113
|_-> failwith "didn't match"
114
114
match"test--this-gg"with Like "%s--%s-%s"("test","this","gg")->()|_-> failwith "didn't match"
115
-
match"1 2.1 3.4 .3 43.2e32 0 f f"with Like "%f%F%g%G%e%E%c%c"(1f,2.1,3.4,0.3,43.2e32,0.,'f','f')->()|_-> failwith "didn't match"
116
-
match"1 2.1 3.4 .3 43.2e32 0 f f f"with Like "%f%F%g%G%e%E%c%c%c"(1f,2.1,3.4,0.3,43.2e32,0.,'f','f','f')->()|_-> failwith "didn't match"
115
+
match"1 2.1 3.4 .3 43.2e32 0 f f"with Like "%f%F%g%G%e%E%c%c"(1f,2.1,3.4m,0.3,43.2e32,0.,'f','f')->()|_-> failwith "didn't match"
116
+
match"1 2.1 3.4 .3 43.2e32 0 f f f"with Like "%f%F%g%G%e%E%c%c%c"(1m,2.1,3.4,0.3m,43.2e32,0.,'f','f','f')->()|_-> failwith "didn't match"
117
117
match"1 2.1 3.4 .3 43.2e32 0 f f ff"with Like "%B %F%g%G%e%E%c%c%c%c"(1,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f')->()|_-> failwith "didn't match"
118
-
match"1 2.1 3.4 .3 43.2e32 0 f f fff"with Like "%o%F%g%G%e%E%c%c%c%c%c"(1,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f')->()|_-> failwith "didn't match"
119
-
match"1 2.1 3.4 .3 43.2e32 0 f f fff16"with Like "%x%F%g%G%e%E%c%c%c%c%c%i"(1,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f',16)->()|_-> failwith "didn't match"
120
-
match"1 2.1 3.4 .3 43.2e32 0 f f fff16 17"with Like "%X%F%g%G%e%E%c%c%c%c%c%i%f"(1,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f',16,17.)->()|_-> failwith "didn't match"
118
+
match"1 2.1 3.4 .3 43.2e32 0 f f fff"with Like "%o%F%g%G%e%E%c%c%c%c%c"(1y,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f')->()|_-> failwith "didn't match"
119
+
match"1 2.1 3.4 .3 43.2e32 0 f f fff16"with Like "%x%F%g%G%e%E%c%c%c%c%c%i"(1us,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f',16)->()|_-> failwith "didn't match"
120
+
match"1 2.1 3.4 .3 43.2e32 0 f f fff16 17"with Like "%X%F%g%G%e%E%c%c%c%c%c%i%f"(1s,2.1,3.4,0.3,43.2e32,0.,'f','f','f','f','f',16L,17.)->()|_-> failwith "didn't match"
121
121
match"13 43 AA 77A"with Like "%x%X%x%o%X"(0x13,0x43,0xAA,0o77,0xA)->()|_-> failwith "didn't match"
122
122
match"13 43 AA 77A"with Like "%B%x%X%x%o%X"(0b1,0x3,0x43,0xAA,0o77,0xA)->()|_-> failwith "didn't match"
123
123
match"111AAA"with Like "%B%s"(0b111,"AAA")->()|_-> failwith "didn't match"
0 commit comments