From 23c1a7e2897b2d1a61b9abca0ae7e049ba319508 Mon Sep 17 00:00:00 2001 From: nickthetait Date: Tue, 13 Mar 2018 23:56:49 -0600 Subject: [PATCH] Fix test case to work on Ubuntu Signed-off-by: nickthetait --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index 0d79503..bde1baa 100644 --- a/makefile +++ b/makefile @@ -177,9 +177,9 @@ test_006: flawfinder test.c test_007: setup.py @echo 'test_007 (setup.py sane)' - @test "`$(PYTHON) setup.py --name`" == 'flawfinder' - @test "`$(PYTHON) setup.py --license`" == 'GPL-2.0+' - @test "`$(PYTHON) setup.py --author`" == 'David A. Wheeler' + @test "`$(PYTHON) setup.py --name`" = 'flawfinder' + @test "`$(PYTHON) setup.py --license`" = 'GPL-2.0+' + @test "`$(PYTHON) setup.py --author`" = 'David A. Wheeler' # Run all tests on *one* version of Python; # output shows differences from expected results.