Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
id
go-sso
Commits
ff7a1048
Commit
ff7a1048
authored
Jan 01, 2018
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix session_test
parent
fdd2b432
Pipeline
#762
passed with stages
in 1 minute and 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
httputil/session_test.go
httputil/session_test.go
+1
-1
No files found.
httputil/session_test.go
View file @
ff7a1048
...
...
@@ -26,7 +26,7 @@ func TestExpiringSession(t *testing.T) {
if
err
:=
gob
.
NewDecoder
(
&
buf
)
.
Decode
(
&
s2
);
err
!=
nil
{
t
.
Fatal
(
"decode:"
,
err
)
}
if
!
reflect
.
DeepEqual
(
s
,
&
s2
)
{
if
!
reflect
.
DeepEqual
(
s
.
Data
,
s2
.
Data
)
{
t
.
Fatalf
(
"sessions differ: %+v vs %+v"
,
s
,
&
s2
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment