From 16c979220bb203f16a11189a8f28f56ff5c6f73a Mon Sep 17 00:00:00 2001 From: Paul Ouellette Date: Thu, 30 May 2019 13:26:58 -0400 Subject: [PATCH] Remove duplicate test --- spec/help_spec.lua | 9 --------- 1 file changed, 9 deletions(-) diff --git a/spec/help_spec.lua b/spec/help_spec.lua index 5f0db13..311104a 100644 --- a/spec/help_spec.lua +++ b/spec/help_spec.lua @@ -7,15 +7,6 @@ describe("tests related to help message generation", function() assert.equal([[ Usage: foo [-h] -Options: - -h, --help Show this help message and exit.]], parser:get_help()) - end) - - it("does not create extra help options when :prepare is called several times", function() - local parser = Parser "foo" - assert.equal([[ -Usage: foo [-h] - Options: -h, --help Show this help message and exit.]], parser:get_help()) end)