Skip to content

Commit ccfcc14

Browse files
committed
revert changes in caller info tests made in dotnet#18699
1 parent 3c45db8 commit ccfcc14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/fsharpqa/Source/Conformance/SpecialAttributesAndTypes/Imported/CallerInfo/CallerFilePath.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ module Program =
5757

5858
# 345 "qwerty1"
5959
match CallerInfoTest.AllInfo(123) with
60-
| (path, _, _) when matchesPath "Conformance#SpecialAttributesAndTypes#Imported#CallerInfo#CallerFilePath.fs" path -> ()
60+
| (path, _, _) when matchesPath "Conformance#SpecialAttributesAndTypes#Imported#CallerInfo#querty1.fs" path -> ()
6161
| x -> failwithf "Unexpected C# result with multiple parameter types: %A" x
6262

6363
# 456 "qwerty2"
6464
match CallerInfoTest.AllInfo(123) with
65-
| (path, _, _) when matchesPath "Conformance#SpecialAttributesAndTypes#Imported#CallerInfo#CallerFilePath.fs" path -> ()
65+
| (path, _, _) when matchesPath "Conformance#SpecialAttributesAndTypes#Imported#CallerInfo#qwerty2.fs" path -> ()
6666
| x -> failwithf "Unexpected C# result with multiple parameter types: %A" x
6767

6868
0

tests/fsharpqa/Source/Conformance/SpecialAttributesAndTypes/Imported/CallerInfo/CallerLineNumber.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ module Program =
3939

4040
# 345 "qwerty"
4141
match CallerInfoTest.AllInfo(123) with
42-
| (_, 41, _) -> ()
42+
| (_, 345, _) -> ()
4343
| x -> failwithf "Unexpected C# result with multiple parameter types: %A" x
4444
# 456 "qwerty"
4545
match CallerInfoTest.AllInfo(123) with
46-
| (_, 45, _) -> ()
46+
| (_, 456, _) -> ()
4747
| x -> failwithf "Unexpected C# result with multiple parameter types: %A" x
4848

4949
0

0 commit comments

Comments
 (0)