From: Jérémie Astor <astor.jeremie@wanadoo.fr>
Date: Sat, 9 May 2020 19:25:56 +0000 (+0200)
Subject: :wrench: fix class_template builtin test
X-Git-Tag: nightly~1620
X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=de37baa6510d50cb38a65ec7784d33c46301dcf5;p=gwion.git

:wrench: fix class_template builtin test
---

diff --git a/tests/import/class_template.c b/tests/import/class_template.c
index ff335e08..191e7ac2 100644
--- a/tests/import/class_template.c
+++ b/tests/import/class_template.c
@@ -35,7 +35,7 @@ GWION_IMPORT(class_template) {
    GWI_BB(gwi_func_end(gwi, (f_xfun)1, ae_flag_none))
 
   GWI_BB(gwi_class_end(gwi))
-  GWI_BB(gwi_item_ini(gwi, "<~Ptr<~int~>,int[]~>ClassTemplate", "testObject"))
+  GWI_BB(gwi_item_ini(gwi, "<~<~int~>Ptr,int[]~>ClassTemplate", "testObject"))
   GWI_BB(gwi_item_end(gwi, ae_flag_none, NULL))
   return GW_OK;
 }