We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0000c commit 107565aCopy full SHA for 107565a
kernelargs_test.go
@@ -37,30 +37,37 @@ func TestKernelArgsSerder(t *testing.T) {
37
expectedParsedArgs := kernelArgs(map[string]kernelArg{
38
"foo": {
39
position: 0,
40
+ key: "foo",
41
value: &fooVal,
42
},
43
"blah": {
44
position: 1,
45
+ key: "blah",
46
value: nil,
47
48
"doo": {
49
position: 2,
50
+ key: "doo",
51
value: &dooVal,
52
53
"huh": {
54
position: 3,
55
+ key: "huh",
56
value: &emptyVal,
57
58
"bleh": {
59
position: 4,
60
+ key: "bleh",
61
62
63
"duh": {
64
position: 5,
65
+ key: "duh",
66
67
68
"boo": {
69
position: 6,
70
+ key: "boo",
71
value: &booVal,
72
73
})
0 commit comments