Revert "Echo initial value if given a source"

This reverts commit 16e2983c54758cabfb1ddd102090f20083820d03.
This commit is contained in:
Richard 2023-09-18 19:58:39 -07:00 committed by Aaron
parent 109cca45f3
commit a543a24865
2 changed files with 1 additions and 11 deletions

View file

@ -359,12 +359,6 @@ TEST("source()", wrap_root(function()
CHECK(src() == 2)
end
do CASE "echo if value is a source"
local a = source(1)
local b = source(a)
CHECK(a == b)
end
do CASE "does not update if same value"
local src = source(1)