diff --git a/platform/frontends/php2atom/src/test/scala/io/appthreat/php2atom/querying/TypeNodeTests.scala b/platform/frontends/php2atom/src/test/scala/io/appthreat/php2atom/querying/TypeNodeTests.scala index 59b155ad..23299cec 100644 --- a/platform/frontends/php2atom/src/test/scala/io/appthreat/php2atom/querying/TypeNodeTests.scala +++ b/platform/frontends/php2atom/src/test/scala/io/appthreat/php2atom/querying/TypeNodeTests.scala @@ -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") } } }