diff --git a/java/ql/test-kotlin1/query-tests/DeadRefTypes/DeadRefTypes.expected b/java/ql/test-kotlin1/query-tests/DeadRefTypes/DeadRefTypes.expected index b900d5172c8..2cf2b34754e 100644 --- a/java/ql/test-kotlin1/query-tests/DeadRefTypes/DeadRefTypes.expected +++ b/java/ql/test-kotlin1/query-tests/DeadRefTypes/DeadRefTypes.expected @@ -1 +1 @@ -| test.kt:1:1:1:20 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. | +| test.kt:1:1:1:31 | C1 | Unused class: C1 is not referenced within this codebase. If not used as an external API it should be removed. | diff --git a/java/ql/test-kotlin1/query-tests/NamingConventionsRefTypes/NamingConventionsRefTypes.expected b/java/ql/test-kotlin1/query-tests/NamingConventionsRefTypes/NamingConventionsRefTypes.expected index ffcd13ccc56..89795785c85 100644 --- a/java/ql/test-kotlin1/query-tests/NamingConventionsRefTypes/NamingConventionsRefTypes.expected +++ b/java/ql/test-kotlin1/query-tests/NamingConventionsRefTypes/NamingConventionsRefTypes.expected @@ -1 +1 @@ -| Test.kt:12:1:12:13 | aaaa | Class and interface names should start in uppercase. | +| Test.kt:12:1:12:24 | aaaa | Class and interface names should start in uppercase. | diff --git a/java/ql/test-kotlin1/query-tests/UselessNullCheck/Test.kt b/java/ql/test-kotlin1/query-tests/UselessNullCheck/Test.kt index 365eb5083a2..cca4c6fb51d 100644 --- a/java/ql/test-kotlin1/query-tests/UselessNullCheck/Test.kt +++ b/java/ql/test-kotlin1/query-tests/UselessNullCheck/Test.kt @@ -12,7 +12,7 @@ fun fn(x:Any?, y: Any?) { fun fn0(o: Any?) { if (o != null) { - o?.toString() - o.toString() // $ Alert + o?.toString() // $ Alert + o.toString() } }