Skip to content

Commit

Permalink
Merge pull request #125 from opencontrol/vet-fixes
Browse files Browse the repository at this point in the history
fixes for 'go vet' warnings
  • Loading branch information
jcscottiii committed Apr 26, 2016
2 parents 3a1a0fd + f892bea commit 22b7075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/common/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
type Entry struct {
URL string `yaml:"url"`
Revision string `yaml:"revision"`
Path string `yaml:path"`
Path string `yaml:"path"`
}

// GetConfigFile is a getter for the config file name. Will return DefaultConfigYaml value if none has been set.
Expand Down
2 changes: 1 addition & 1 deletion docx/docx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var _ = Describe("Docx", func() {

DescribeTable("FormatControl", func(standardControl string, expectedData string) {
openControl := docx.OpenControlDocx{
models.LoadData(filepath.Join("..", "fixtures", "opencontrol_fixtures"), ""),
OpenControl: models.LoadData(filepath.Join("..", "fixtures", "opencontrol_fixtures"), ""),
}
actualData := openControl.FormatControl(standardControl)
assert.Equal(GinkgoT(), expectedData, actualData)
Expand Down

0 comments on commit 22b7075

Please sign in to comment.