From e4a9c872b46af12c761382a3cdf623223032b424 Mon Sep 17 00:00:00 2001 From: kikito Date: Fri, 19 Sep 2014 22:56:57 +0200 Subject: [PATCH] remove redundant describe block --- spec/inspect_spec.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spec/inspect_spec.lua b/spec/inspect_spec.lua index b5b5898..01fe1ec 100644 --- a/spec/inspect_spec.lua +++ b/spec/inspect_spec.lua @@ -59,10 +59,8 @@ describe( 'inspect', function() end) if is_luajit then - describe('luajit cdata', function() - it('works with luajit cdata', function() - assert.equals(inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }), '{ , , }') - end) + it('works with luajit cdata', function() + assert.equals(inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }), '{ , , }') end) end