diff --git a/tests/tests/swfs/avm2/vector_string_concat/output.txt b/tests/tests/swfs/avm2/vector_string_concat/output.txt index f03c764db..2e55e117c 100644 --- a/tests/tests/swfs/avm2/vector_string_concat/output.txt +++ b/tests/tests/swfs/avm2/vector_string_concat/output.txt @@ -1,12 +1,12 @@ -/// var a: Vector. = new []; -/// a.length = 2; -/// a[0] = new Superclass(); -/// a[1] = new Subclass(); -/// var b: Vector. = new []; -/// b.length = 1; -/// b[0] = new Subclass(); +/// var a: Vector. = new ["a","c","d","f"]; +/// var b: Vector. = new ["986","B4","Q","rrr"]; /// var c = a.concat(b); /// (contents of c...) -[object Superclass] -[object Subclass] -[object Subclass] +a +c +d +f +986 +B4 +Q +rrr diff --git a/tests/tests/swfs/avm2/vector_string_concat/test.swf b/tests/tests/swfs/avm2/vector_string_concat/test.swf index 79a1508fa..82e660020 100644 Binary files a/tests/tests/swfs/avm2/vector_string_concat/test.swf and b/tests/tests/swfs/avm2/vector_string_concat/test.swf differ