Merged in feature/dockerfileintest (pull request #130)

Dockerfile in Test

* dockerfile

* network

* const
This commit is contained in:
Michael McGuinness
2025-05-03 11:29:10 +00:00
parent dd2eebf13a
commit 721ca8a6e6
27 changed files with 83 additions and 110 deletions
+2 -2
View File
@@ -12,9 +12,9 @@ import (
func TestDepNetworkGet(t *testing.T) {
ctx := context.Background()
name := test.DepNetwork.Get(t, ctx)
name := test.GetNetwork(t, ctx)
assert.NotNil(t, name)
newName := test.DepNetwork.Get(t, ctx)
newName := test.GetNetwork(t, ctx)
assert.Equal(t, name, newName)
}