summaryrefslogtreecommitdiff
path: root/nbt/bigtest_test.go
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-08-07 22:06:33 +0200
committerKevin Chabowski <kevin@kch42.de>2013-08-07 22:06:33 +0200
commite7b9d45bf2ed53fee66ad589161dd3e534e98c7f (patch)
treeb1ba590fa4878b91e2e329fdd90e26cfe4187eda /nbt/bigtest_test.go
parentb990c3d2db0280f0c4b3dccc2520caf5f2b6b6e6 (diff)
downloadgonbt-e7b9d45bf2ed53fee66ad589161dd3e534e98c7f.tar.gz
gonbt-e7b9d45bf2ed53fee66ad589161dd3e534e98c7f.tar.bz2
gonbt-e7b9d45bf2ed53fee66ad589161dd3e534e98c7f.zip
More tag creation functions.
Diffstat (limited to 'nbt/bigtest_test.go')
-rw-r--r--nbt/bigtest_test.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/nbt/bigtest_test.go b/nbt/bigtest_test.go
index af6c573..a0f6e7a 100644
--- a/nbt/bigtest_test.go
+++ b/nbt/bigtest_test.go
@@ -253,11 +253,7 @@ func TestCreateBigtest(t *testing.T) {
comp["egg"] = makeNested("Eggbert", 0.5)
rootcomp["nested compound test"] = Tag{TAG_Compound, comp}
- listlong := make([]interface{}, 5)
- for i := 0; i < 5; i++ {
- listlong[i] = int64(i + 11)
- }
- rootcomp["listTest (long)"] = Tag{TAG_List, TagList{TAG_Long, listlong}}
+ rootcomp["listTest (long)"] = NewListTag(TAG_Long, []int64{11, 12, 13, 14, 15})
listcomp := make([]interface{}, 2)
for i := 0; i < 2; i++ {
@@ -266,7 +262,7 @@ func TestCreateBigtest(t *testing.T) {
comp["created-on"] = NewLongTag(1264099775885)
listcomp[i] = comp
}
- rootcomp["listTest (compound)"] = Tag{TAG_List, TagList{TAG_Compound, listcomp}}
+ rootcomp["listTest (compound)"] = NewListTag(TAG_Compound, listcomp)
data := make([]byte, 1000)
for n := 0; n < 1000; n++ {