This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
cs: only assert important stuff
v0.31
Anton Kaliaev
5 years ago
committed by
Jack Zampolin
parent
6dee1101ba
commit
e78255cba2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
consensus/wal_test.go
+ 1
- 1
consensus/wal_test.go
View File
@ -135,7 +135,7 @@ func TestWALWrite(t *testing.T) {
}
err
=
wal
.
Write
(
msg
)
if
assert
.
Error
(
t
,
err
)
{
assert
.
Equal
(
t
,
"msg is too big: 1048593 bytes, max: 1048576 bytes"
,
err
.
Error
(
)
)
assert
.
Contains
(
t
,
err
.
Error
(
)
,
"msg is too big"
)
}
}
Write
Preview
Loading…
Cancel
Save