@@ -87,13 +87,13 @@ func TestStandaloneSign(t *testing.T) {
87
87
88
88
actual := req .Header .Get ("Authorization" )
89
89
if e , a := c .ExpSig , actual ; e != a {
90
- t .Errorf ("expected %v, but recieved %v" , e , a )
90
+ t .Errorf ("expected %v, but received %v" , e , a )
91
91
}
92
92
if e , a := c .OrigURI , req .URL .Path ; e != a {
93
- t .Errorf ("expected %v, but recieved %v" , e , a )
93
+ t .Errorf ("expected %v, but received %v" , e , a )
94
94
}
95
95
if e , a := c .EscapedURI , req .URL .EscapedPath (); e != a {
96
- t .Errorf ("expected %v, but recieved %v" , e , a )
96
+ t .Errorf ("expected %v, but received %v" , e , a )
97
97
}
98
98
}
99
99
}
@@ -127,13 +127,13 @@ func TestStandaloneSign_RawPath(t *testing.T) {
127
127
128
128
actual := req .Header .Get ("Authorization" )
129
129
if e , a := c .ExpSig , actual ; e != a {
130
- t .Errorf ("expected %v, but recieved %v" , e , a )
130
+ t .Errorf ("expected %v, but received %v" , e , a )
131
131
}
132
132
if e , a := c .OrigURI , req .URL .Path ; e != a {
133
- t .Errorf ("expected %v, but recieved %v" , e , a )
133
+ t .Errorf ("expected %v, but received %v" , e , a )
134
134
}
135
135
if e , a := c .EscapedURI , req .URL .EscapedPath (); e != a {
136
- t .Errorf ("expected %v, but recieved %v" , e , a )
136
+ t .Errorf ("expected %v, but received %v" , e , a )
137
137
}
138
138
}
139
139
}
0 commit comments