Skip to content

Commit

Permalink
Revert "[dataflowengineoss] refine return value semantics honouring (j…
Browse files Browse the repository at this point in the history
…oernio#4680)"

This reverts commit 195f015.
  • Loading branch information
khemrajrathore committed Dec 24, 2024
1 parent af53280 commit 0fd92ea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class DataFlowTests extends PySrc2CpgFixture(withOssDataflow = true) {
flows shouldBe empty
}

"no flow from aliased literal to imported external method call return value given argument1-only semantics" in {
"no flow from aliased literal to imported external method call return value given argument1-only semantics" ignore {
val cpg = code("""
|from helpers import foo
|a = 20
Expand All @@ -104,7 +104,7 @@ class DataFlowTests extends PySrc2CpgFixture(withOssDataflow = true) {
flows shouldBe empty
}

"no flow from literal to imported external method return value given empty semantics" in {
"no flow from literal to imported external method return value given empty semantics" ignore {
val cpg = code("""
|from helpers import foo
|print(foo(20))
Expand All @@ -116,7 +116,7 @@ class DataFlowTests extends PySrc2CpgFixture(withOssDataflow = true) {
flows shouldBe empty
}

"no flow from literal to imported external method return value given receiver-only semantics" in {
"no flow from literal to imported external method return value given receiver-only semantics" ignore {
val cpg = code("""
|from helpers import foo
|print(foo(20))
Expand All @@ -128,7 +128,7 @@ class DataFlowTests extends PySrc2CpgFixture(withOssDataflow = true) {
flows shouldBe empty
}

"no flow from literal to imported external method return value given argument1-only semantics" in {
"no flow from literal to imported external method return value given argument1-only semantics" ignore {
val cpg = code("""
|from helpers import foo
|print(foo(20))
Expand Down

0 comments on commit 0fd92ea

Please sign in to comment.