Skip to content

Commit

Permalink
fixed ineff assign in test and added awesome-go badge
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik Ogura committed Jun 25, 2019
1 parent 59a57ab commit 99ce87b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

[![Coverage Status](https://coveralls.io/repos/github/nikogura/dbt/badge.svg?branch=master&version=1.0.5)](https://coveralls.io/github/nikogura/dbt?branch=master)

[![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go)

A framework for running self-updating, signed binary tools from a central, trusted repository.

# Overview
Expand Down
2 changes: 1 addition & 1 deletion pkg/dbt/repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestToolVersionExists(t *testing.T) {
t.Fail()
}

ok, err = dbtObj.ToolVersionExists("foo", "0.0.0")
ok, _ = dbtObj.ToolVersionExists("foo", "0.0.0")

if ok {
fmt.Println(fmt.Sprintf("Nonexistant tool version %q shows existing in repo.", "0.0.0"))
Expand Down

0 comments on commit 99ce87b

Please sign in to comment.