From b26f950ccaa0a1a973b282a516bd80295536feb2 Mon Sep 17 00:00:00 2001
From: Albert Krewinkel <albert@zeitkraut.de>
Date: Tue, 2 Nov 2021 17:25:47 +0100
Subject: Lua: display Attr values using their native Haskell representation

---
 test/lua/module/pandoc.lua | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'test/lua/module')

diff --git a/test/lua/module/pandoc.lua b/test/lua/module/pandoc.lua
index 057d24202..9f5f5c771 100644
--- a/test/lua/module/pandoc.lua
+++ b/test/lua/module/pandoc.lua
@@ -185,10 +185,10 @@ return {
       end),
       test('has property `text`', function ()
         local code = pandoc.Code('true')
-        -- assert.are_equal(code.text, 'true')
+        assert.are_equal(code.text, 'true')
 
-        -- code.text = '1 + 1'
-        -- assert.are_equal(pandoc.Code('1 + 1'), code)
+        code.text = '1 + 1'
+        assert.are_equal(pandoc.Code('1 + 1'), code)
       end),
     },
     group 'Link' {
-- 
cgit v1.2.3