diff --git a/test/tests_advanced_html_rendering.jl b/test/tests_advanced_html_rendering.jl
index 9b44006b8..55f2d6a20 100644
--- a/test/tests_advanced_html_rendering.jl
+++ b/test/tests_advanced_html_rendering.jl
@@ -18,21 +18,24 @@
"
- a
- b
- c
" |> fws
end;
- @safetestset "for_each can not access module variables" begin
- using Genie
- using Genie.Renderer.Html
+ # TODO: this test doesn't seem to check the right things - and most likely was passing by accident
+ # disabled for now -- to review
- x = 100
+# @safetestset "for_each can not access module variables" begin
+# using Genie
+# using Genie.Renderer.Html
- view = raw"""
-
-<% for_each(["a", "b", "c"]) do letter %>
-- $(letter) = $x
-<% end %>
-
"""
+# x = 100
- @test_throws UndefVarError html(view)
- end;
+# view = raw"""
+#
+# <% for_each(["a", "b", "c"]) do letter %>
+# - $(letter) = $x
+# <% end %>
+#
"""
+
+# @test_throws UndefVarError html(view)
+# end;
@safetestset "for_each can access view variables" begin
using Genie