diff options
| author | Carlos Martín Nieto <[email protected]> | 2014-03-20 03:29:54 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <[email protected]> | 2014-03-20 03:29:54 +0100 |
| commit | 574f0dd12da2eae6f26ae35f197b2ec7a9328249 (patch) | |
| tree | b572512f36068755df8617c4ecdd38c41259ada0 /remote_test.go | |
| parent | 3ae9813fca2837601e5a7c801972396a59e1eb59 (diff) | |
Remote: remove Get prefix from refspecs
Idiomatic Go is to omit the Get from the getter methods.
Diffstat (limited to 'remote_test.go')
| -rw-r--r-- | remote_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote_test.go b/remote_test.go index 16675fc..04b3a57 100644 --- a/remote_test.go +++ b/remote_test.go @@ -20,7 +20,7 @@ func TestRefspecs(t *testing.T) { err = remote.SetFetchRefspecs(expected) checkFatal(t, err) - actual, err := remote.GetFetchRefspecs() + actual, err := remote.FetchRefspecs() checkFatal(t, err) compareStringList(t, expected, actual) |
