diff --git a/go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql b/go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql index dfece4ed024..a65f8df3adc 100644 --- a/go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql +++ b/go/ql/src/InconsistentCode/UnhandledCloseWritableHandle.ql @@ -43,14 +43,14 @@ class OpenFileFun extends Function { * The `os.File.Close` function. */ class CloseFileFun extends Method { - CloseFileFun() { this.hasQualifiedName("os.File", "Close") } + CloseFileFun() { this.hasQualifiedName("os", "File", "Close") } } /** * The `os.File.Sync` function. */ class SyncFileFun extends Method { - SyncFileFun() { this.hasQualifiedName("os.File", "Sync") } + SyncFileFun() { this.hasQualifiedName("os", "File", "Sync") } } /**