We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78bb7bc commit f1a8613Copy full SHA for f1a8613
tests/testutils/container.go
@@ -12,6 +12,8 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+//lint:ignore SA1019
16
+
17
package testutils
18
19
import (
@@ -484,6 +486,7 @@ func (container *Container) createNetworksIfNecessary(req testcontainers.Generic
484
486
return err
485
487
}
488
for _, networkName := range container.ContainerNetworks {
489
+ //nolint:staticcheck
490
query := testcontainers.NetworkRequest{
491
Name: networkName,
492
@@ -492,6 +495,7 @@ func (container *Container) createNetworksIfNecessary(req testcontainers.Generic
495
493
496
494
497
if networkResource.Name != networkName {
498
499
create := testcontainers.NetworkRequest{
500
Driver: "bridge",
501
0 commit comments