Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 7, 2024
1 parent c42756e commit 06d92ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ class TypeNodeTests extends PhpCode2CpgFixture {

"have corresponding type nodes created" in {
println(cpg.literal.toList)
cpg.typ.fullName.toSet shouldEqual Set("ANY", "string")
cpg.typ.fullName.toSet shouldEqual Set("ANY", "int")
}

"have corresponding type decls created" in {
cpg.typeDecl.external.fullName.toSet shouldEqual Set("ANY", "string")
cpg.typeDecl.external.fullName.toSet shouldEqual Set("ANY", "int")
}
}
}

0 comments on commit 06d92ba

Please sign in to comment.