diff options
author | 2016-10-27 16:39:01 -0700 | |
---|---|---|
committer | 2016-10-27 16:39:01 -0700 | |
commit | 81051d9e2d5fa34552eccf25801d137b5486c804 (patch) | |
tree | 58a529445f3eaa5d80cf2d6f0cc4428e57df0eb4 /handler_test.go | |
parent | ac8374fd17e30fca9a7773a2a6f690a7ea4d2ec9 (diff) | |
download | sally-81051d9e2d5fa34552eccf25801d137b5486c804.tar.gz sally-81051d9e2d5fa34552eccf25801d137b5486c804.tar.zst sally-81051d9e2d5fa34552eccf25801d137b5486c804.zip |
Enforce alphabetical ordering of packages in YAML config (#22)
Diffstat (limited to 'handler_test.go')
-rw-r--r-- | handler_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/handler_test.go b/handler_test.go index 9f2eca8..ce5e290 100644 --- a/handler_test.go +++ b/handler_test.go @@ -6,10 +6,10 @@ var config = ` url: go.uber.org packages: - yarpc: - repo: github.com/yarpc/yarpc-go thriftrw: repo: github.com/thriftrw/thriftrw-go + yarpc: + repo: github.com/yarpc/yarpc-go ` |