Commit 4362989d authored by Carlos Leandro's avatar Carlos Leandro
Browse files

fix: header must not be longer than 100 characters

parent 785c5295
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -786,12 +786,12 @@ func TestWorkerDeploymentTemplate(t *testing.T) {
				{
					ExpectedName:           "production-worker1",
					ExpectedCmd:            []string{"echo", "worker1"},
					ExpectedResources:  	coreV1.ResourceRequirements{},
					ExpectedResources:  	&coreV1.ResourceRequirements{},
				},
				{
					ExpectedName:           "production-worker2",
					ExpectedCmd:            []string{"echo", "worker2"},
					ExpectedResources:  	coreV1.ResourceRequirements{},
					ExpectedResources:  	&coreV1.ResourceRequirements{},
				},
			},
		},
@@ -809,7 +809,7 @@ func TestWorkerDeploymentTemplate(t *testing.T) {
				{
					ExpectedName:           "production-worker1",
					ExpectedCmd:            []string{"echo", "worker1"},
					ExpectedResources:  	coreV1.ResourceRequirements{
					ExpectedResources:  	&coreV1.ResourceRequirements{
						Requests: coreV1.ResourceList{
							"memory": resource.MustParse("250M"),
						},
@@ -818,7 +818,7 @@ func TestWorkerDeploymentTemplate(t *testing.T) {
				{
					ExpectedName:           "production-worker2",
					ExpectedCmd:            []string{"echo", "worker2"},
					ExpectedResources:  	coreV1.ResourceRequirements{},
					ExpectedResources:  	&coreV1.ResourceRequirements{},
				},
			},
		},