tests: update test for nitserial
authorAlexandre Terrasa <alexandre@moz-code.org>
Fri, 12 May 2017 05:29:32 +0000 (01:29 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Fri, 12 May 2017 05:29:32 +0000 (01:29 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

tests/sav/nitserial_args1.res

index 4c6679d..3e2cf64 100644 (file)
@@ -31,6 +31,7 @@ redef class Deserializer
                if name == "HashMap[String, POSetElement[String]]" then return new HashMap[String, POSetElement[String]].from_deserializer(self)
                if name == "Array[Match]" then return new Array[Match].from_deserializer(self)
                if name == "Array[nullable Match]" then return new Array[nullable Match].from_deserializer(self)
+               if name == "Array[nullable Serializable]" then return new Array[nullable Serializable].from_deserializer(self)
                return super
        end
 end