Skip to content

Commit a190134

Browse files
author
Kate Osborn
committed
nginx proxy -> NginxProxy
1 parent 9004d09 commit a190134

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

internal/mode/static/state/dataplane/configuration_test.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3263,7 +3263,7 @@ func TestBuildTelemetry(t *testing.T) {
32633263
},
32643264
},
32653265
expTelemetry: Telemetry{},
3266-
msg: "nil effective nginx proxy",
3266+
msg: "nil effective NginxProxy",
32673267
},
32683268
{
32693269
g: &graph.Graph{
@@ -3959,7 +3959,7 @@ func TestBuildLogging(t *testing.T) {
39593959
expLoggingSettings: defaultLogging,
39603960
},
39613961
{
3962-
msg: "Gateway has no effective nginx proxy",
3962+
msg: "Gateway has no effective NginxProxy",
39633963
g: &graph.Graph{
39643964
Gateway: &graph.Gateway{
39653965
EffectiveNginxProxy: nil,
@@ -3968,7 +3968,7 @@ func TestBuildLogging(t *testing.T) {
39683968
expLoggingSettings: defaultLogging,
39693969
},
39703970
{
3971-
msg: "Effective nginx proxy does not specify log level",
3971+
msg: "Effective NginxProxy does not specify log level",
39723972
g: &graph.Graph{
39733973
Gateway: &graph.Gateway{
39743974
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -3979,7 +3979,7 @@ func TestBuildLogging(t *testing.T) {
39793979
expLoggingSettings: defaultLogging,
39803980
},
39813981
{
3982-
msg: "Effective nginx proxy log level set to debug",
3982+
msg: "Effective NginxProxy log level set to debug",
39833983
g: &graph.Graph{
39843984
Gateway: &graph.Gateway{
39853985
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -3992,7 +3992,7 @@ func TestBuildLogging(t *testing.T) {
39923992
expLoggingSettings: Logging{ErrorLevel: "debug"},
39933993
},
39943994
{
3995-
msg: "Effective nginx proxy log level set to info",
3995+
msg: "Effective NginxProxy log level set to info",
39963996
g: &graph.Graph{
39973997
Gateway: &graph.Gateway{
39983998
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4005,7 +4005,7 @@ func TestBuildLogging(t *testing.T) {
40054005
expLoggingSettings: Logging{ErrorLevel: defaultErrorLogLevel},
40064006
},
40074007
{
4008-
msg: "Effective nginx proxy log level set to notice",
4008+
msg: "Effective NginxProxy log level set to notice",
40094009
g: &graph.Graph{
40104010
Gateway: &graph.Gateway{
40114011
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4018,7 +4018,7 @@ func TestBuildLogging(t *testing.T) {
40184018
expLoggingSettings: Logging{ErrorLevel: "notice"},
40194019
},
40204020
{
4021-
msg: "Effective nginx proxy log level set to warn",
4021+
msg: "Effective NginxProxy log level set to warn",
40224022
g: &graph.Graph{
40234023
Gateway: &graph.Gateway{
40244024
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4031,7 +4031,7 @@ func TestBuildLogging(t *testing.T) {
40314031
expLoggingSettings: Logging{ErrorLevel: "warn"},
40324032
},
40334033
{
4034-
msg: "Effective nginx proxy log level set to error",
4034+
msg: "Effective NginxProxy log level set to error",
40354035
g: &graph.Graph{
40364036
Gateway: &graph.Gateway{
40374037
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4044,7 +4044,7 @@ func TestBuildLogging(t *testing.T) {
40444044
expLoggingSettings: Logging{ErrorLevel: "error"},
40454045
},
40464046
{
4047-
msg: "Effective nginx proxy log level set to crit",
4047+
msg: "Effective NginxProxy log level set to crit",
40484048
g: &graph.Graph{
40494049
Gateway: &graph.Gateway{
40504050
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4057,7 +4057,7 @@ func TestBuildLogging(t *testing.T) {
40574057
expLoggingSettings: Logging{ErrorLevel: "crit"},
40584058
},
40594059
{
4060-
msg: "Effective nginx proxy log level set to alert",
4060+
msg: "Effective NginxProxy log level set to alert",
40614061
g: &graph.Graph{
40624062
Gateway: &graph.Gateway{
40634063
EffectiveNginxProxy: &graph.EffectiveNginxProxy{
@@ -4070,7 +4070,7 @@ func TestBuildLogging(t *testing.T) {
40704070
expLoggingSettings: Logging{ErrorLevel: "alert"},
40714071
},
40724072
{
4073-
msg: "Effective nginx proxy log level set to emerg",
4073+
msg: "Effective NginxProxy log level set to emerg",
40744074
g: &graph.Graph{
40754075
Gateway: &graph.Gateway{
40764076
EffectiveNginxProxy: &graph.EffectiveNginxProxy{

0 commit comments

Comments
 (0)