Fix quoting bug in `#test_directories`
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 13 Jun 2019 08:05:30 +0100
changeset 192 4f453d7413d4
parent 191 18b32a5811f4
child 193 2aa0074479d9
Fix quoting bug in `#test_directories`
tests/GDBDebuggerTestsR.st
--- a/tests/GDBDebuggerTestsR.st	Wed Jun 12 20:20:18 2019 +0100
+++ b/tests/GDBDebuggerTestsR.st	Thu Jun 13 08:05:30 2019 +0100
@@ -436,14 +436,14 @@
         current := Filename currentDirectory pathName
     ].
 
-    debugger send: ('set directories "%1"' bindWith: current).
+    debugger send: ('set directories %1' bindWith: current).
     directories := debugger directories.
     self assert: directories isArray.
     self assert:(directories includes: Filename currentDirectory pathName).
 
     "Created: / 09-03-2018 / 12:28:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 03-04-2018 / 21:08:26 / jv"
-    "Modified: / 18-10-2018 / 10:56:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 13-06-2019 / 07:45:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 test_disassembly_01