diff options
| author | Abhinav Gupta <mail@abhinavg.net> | 2023-04-28 05:33:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-28 05:33:20 -0700 |
| commit | dcec9f7485595ba79512329c103872522f6cb2cf (patch) | |
| tree | b4a2cde20ff1fc7d0b33e92c6c1a5dc0930f53cc /config_test.go | |
| parent | eefdad4a93f81fa4c1ef1c8bacf9e829c4b27400 (diff) | |
| download | sally-dcec9f7485595ba79512329c103872522f6cb2cf.tar.gz | |
config: Rename Package to PackageConfig, add docs (#84)
Renames the Package struct to PackageConfig
to make it clear that it is a configuration struct.
This differentiation will help disconnect
the configuration-level representation
from the runtime representation of this information.
This patch also adds documentation to the config package
that was previously missing.
Diffstat (limited to '')
| -rw-r--r-- | config_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config_test.go b/config_test.go index e4146b1..6587295 100644 --- a/config_test.go +++ b/config_test.go @@ -29,7 +29,7 @@ packages: pkg, ok := config.Packages["grpc"] assert.True(t, ok) - assert.Equal(t, pkg, Package{Repo: "github.com/grpc/grpc-go", Branch: "main"}) + assert.Equal(t, pkg, PackageConfig{Repo: "github.com/grpc/grpc-go", Branch: "main"}) } func TestParseDefaultBranch(t *testing.T) { @@ -48,7 +48,7 @@ packages: pkg, ok := config.Packages["grpc"] assert.True(t, ok) - assert.Equal(t, pkg, Package{Repo: "github.com/grpc/grpc-go", Branch: "master"}) + assert.Equal(t, pkg, PackageConfig{Repo: "github.com/grpc/grpc-go", Branch: "master"}) } func TestParsePackageLevelURL(t *testing.T) { @@ -102,7 +102,7 @@ packages: pkg, ok := config.Packages["grpc"] assert.True(t, ok) - assert.Equal(t, Package{Repo: "github.com/grpc/grpc-go", Branch: "master"}, pkg) + assert.Equal(t, PackageConfig{Repo: "github.com/grpc/grpc-go", Branch: "master"}, pkg) }) } } |