Updated Testing (markdown)
diff --git a/Testing.md b/Testing.md
index cdb2852..023c8e0 100644
--- a/Testing.md
+++ b/Testing.md
@@ -88,12 +88,12 @@
 
 Sometimes the bytecode expectations may change resulting in cctest failures. To update the golden files, build `test/cctest/generate-bytecode-expectations` by running:
 ```
- ninja -C out.gn/x64.release generate-bytecode-expectations
+ninja -C out.gn/x64.release generate-bytecode-expectations
 ```
 
 and then updating the default set of inputs by passing the `--rebaseline` flag to the generated binary:
 ```
- ./out.gn/x64.release/generate-bytecode-expectations --rebaseline
+out.gn/x64.release/generate-bytecode-expectations --rebaseline
 ```
 
 The updated goldens will be available in ` test/cctest/interpreter/bytecode_expectations/`.
@@ -107,6 +107,6 @@
 ```
 3) Run 
 ```
-./out.gn/x64.release/generate-bytecode-expectations --raw-js testcase.js --output=test/cctest/interpreter/bytecode-expectations/testname.golden
+out.gn/x64.release/generate-bytecode-expectations --raw-js testcase.js --output=test/cctest/interpreter/bytecode-expectations/testname.golden
 ``` 
 where `testcase.js` contains the JavaScript test case that was added to `test-bytecode-generator.cc` and `testname` is the name of the test defined in `test-bytecode-generator.cc`.
\ No newline at end of file