Skip to content

Commit a8185fd

Browse files
authored
fix typo in variable name (#6)
1 parent 82749b1 commit a8185fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/JExtractSwiftTests/NominalTypeResolutionTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ struct NominalTypeLookupSuite {
2222
_ resolution: NominalTypeResolution,
2323
name: String,
2424
fileID: String = #fileID,
25-
fileParh: String = #filePath,
25+
filePath: String = #filePath,
2626
line: Int = #line,
2727
column: Int = #column
2828
) {
29-
let sourceLocation = SourceLocation(fileID: fileID, filePath: fileParh, line: line, column: column)
29+
let sourceLocation = SourceLocation(fileID: fileID, filePath: filePath, line: line, column: column)
3030
let nominal = resolution.resolveNominalType(name)
3131
#expect(nominal != nil, sourceLocation: sourceLocation)
3232
if let nominal {

0 commit comments

Comments
 (0)