From ade0819cb734354b9aef9e63524b7d3f579b3dc8 Mon Sep 17 00:00:00 2001 From: Stefans Mezulis Date: Mon, 28 Mar 2016 18:29:45 +0100 Subject: [PATCH] Remove invalid string escape. --- specs/pathfinder_specs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/pathfinder_specs.lua b/specs/pathfinder_specs.lua index bbba5b3..954dd14 100644 --- a/specs/pathfinder_specs.lua +++ b/specs/pathfinder_specs.lua @@ -140,7 +140,7 @@ context('Module Pathfinder', function() assert_equal(pf:getFinder(), 'ASTAR') end) - test('Passing nil sets \'ASTAR\` as the finder if no previous finder was set, is \'ASTAR\'', function() + test('Passing nil sets \'ASTAR\' as the finder if no previous finder was set, is \'ASTAR\'', function() local pf = PF(grid) pf:setFinder() assert_equal(pf:getFinder(), 'ASTAR')