Skip to content

Commit dda0b06

Browse files
committed
change test data to a non-synthetic use case
Signed-off-by: david kydd <david.kydd@microsoft.com>
1 parent dfb55b0 commit dda0b06

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"next_protos": ["testproto1", "testproto2"]}
1+
{"next_protos": ["h2", "http/1.1"]}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
next_protos: ["testproto1", "testproto2"]
1+
next_protos: ["h2", "http/1.1"]

config/tls_config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var expectedTLSConfigs = []struct {
6565
},
6666
{
6767
filename: "tls_config.next_protos.good.json",
68-
config: &tls.Config{NextProtos: []string{"testproto1", "testproto2"}},
68+
config: &tls.Config{NextProtos: []string{"h2", "http/1.1"}},
6969
},
7070
{
7171
filename: "tls_config.tlsversion.good.json",
@@ -85,7 +85,7 @@ var expectedTLSConfigs = []struct {
8585
},
8686
{
8787
filename: "tls_config.next_protos.good.yml",
88-
config: &tls.Config{NextProtos: []string{"testproto1", "testproto2"}},
88+
config: &tls.Config{NextProtos: []string{"h2", "http/1.1"}},
8989
},
9090
{
9191
filename: "tls_config.tlsversion.good.yml",

0 commit comments

Comments
 (0)