Fixed test race conditions

This commit is contained in:
Ryan O'Hara-Reid
2017-07-26 11:54:53 +10:00
committed by Adrian Gallagher
parent 745505a33e
commit 3e4fb1660d
19 changed files with 251 additions and 102 deletions

View File

@@ -7,7 +7,7 @@ In order to maintain a consistent style across the codebase, the following codin
- Function names using acronyms are capitilised (func SendHTTPRequest()).
- Variable names use CamelCase (var someVar()).
- Coding style uses gofmt.
- Const variables are capitilised.
- Const variables are CamelCase depending on exported items.
- In line with gofmt, for loops and if statements don't require paranthesis.
Block style example: