Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
91855c03
Commit
91855c03
authored
Jan 15, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
99ea2b93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
go/neo/internal/msgpack/msgpack_test.go
go/neo/internal/msgpack/msgpack_test.go
+3
-3
No files found.
go/neo/internal/msgpack/msgpack_test.go
View file @
91855c03
...
@@ -38,7 +38,7 @@ func hex(s string) string {
...
@@ -38,7 +38,7 @@ func hex(s string) string {
// tGetPutSize is interface with Get/Put/Size methods, e.g. with
// tGetPutSize is interface with Get/Put/Size methods, e.g. with
// GetBinHead/PutBinHead/BinHeadSize.
// GetBinHead/PutBinHead/BinHeadSize.
type
tGetPutSize
interface
{
type
tGetPutSize
interface
{
//
XXX
Get(data []byte) (n int, ret interface{})
//
TODO
Get(data []byte) (n int, ret interface{})
Size
(
arg
interface
{})
int
Size
(
arg
interface
{})
int
Put
(
data
[]
byte
,
arg
interface
{})
int
Put
(
data
[]
byte
,
arg
interface
{})
int
}
}
...
@@ -55,8 +55,8 @@ func test1(t *testing.T, enc tGetPutSize, arg interface{}, encoded string) {
...
@@ -55,8 +55,8 @@ func test1(t *testing.T, enc tGetPutSize, arg interface{}, encoded string) {
if
sz
:=
enc
.
Size
(
arg
);
sz
!=
n
{
if
sz
:=
enc
.
Size
(
arg
);
sz
!=
n
{
t
.
Errorf
(
"size(%v) -> %d ; len(data)=%d"
,
arg
,
sz
,
n
)
t
.
Errorf
(
"size(%v) -> %d ; len(data)=%d"
,
arg
,
sz
,
n
)
}
}
//
XXX
decode == arg, n
//
TODO
decode == arg, n
//
XXX
decode([:n-1]) -> overflow
//
TODO
decode([:n-1]) -> overflow
}
}
type
tEncUint64
struct
{}
type
tEncUint64
struct
{}
...
...
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