Skip to content

Commit a187584

Browse files
committed
[INTERNAL] Fix broken test
1 parent 6add4ea commit a187584

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/lib/cli/commands/build.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ test.serial("ui5 build --include-dependency (dependency not found)", async (t) =
483483
includeDeps: ["sap.ui.core"]
484484
});
485485
t.is(log.warn.callCount, 1, "log.warn should be called once");
486-
t.deepEqual(log.warn.getCall(0).args, ["Could not find dependency 'sap.ui.core' for 'Sample'."],
486+
t.deepEqual(log.warn.getCall(0).args,
487+
["Could not find dependency 'sap.ui.core' in 'Sample' - dependency filter is ignored"],
487488
"logger.warn should be called with expected string");
488489
});

0 commit comments

Comments
 (0)