Skip to content

Commit ec0f3da

Browse files
committed
test-fix: expectation
1 parent 40d3ce0 commit ec0f3da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/functionality/taint-analysis/propagation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe('Taint Propagation', () => {
114114
describe('User-Defined Functions', () => {
115115
testPropagate('taint passes through an identity function via its argument and return value', 'f <- function(v) { v }\nx <- taint()\ny <- f(x)', { '3@y': TaintA });
116116
testPropagate('a source called inside a user-defined function taints the returned value', 'f <- function() { taint() }\ny <- f()', { '2@y': TaintA });
117-
testPropagate('a user-defined function that discards its argument does not forward the taint', 'f <- function(v) { 1 }\nx <- taint()\ny <- f(x)', { '3@y': undefined });
117+
testPropagate('a user-defined function that discards its argument does not forward the taint', 'f <- function(v) { 1 }\nx <- taint()\ny <- f(x)', { '3@y': Top });
118118
});
119119

120120
describe('Source-Sink Conflict (Greatest Lower Bound)', () => {

0 commit comments

Comments
 (0)