git » sdk » commit 3408897

Can't use the C++ type in all cases

author Stephen Paul Weber
2026-05-26 16:35:33 UTC
committer Stephen Paul Weber
2026-05-26 16:35:33 UTC
parent ecc608061371af8bb46dbbb721b35b52a72f8e0b

Can't use the C++ type in all cases

test/TestSqlite.hx +1 -1

diff --git a/test/TestSqlite.hx b/test/TestSqlite.hx
index 0881ffd..4e407b2 100644
--- a/test/TestSqlite.hx
+++ b/test/TestSqlite.hx
@@ -609,7 +609,7 @@ class TestSqlite extends utest.Test {
 			return persistence.storeReaction(account, update);
 		}).then(msg -> {
 			Assert.notNull(msg);
-			final reactions: haxe.ds.StringMap<Array<Reaction>> = msg.reactions;
+			final reactions = msg.reactions;
 			Assert.equals(1, Lambda.count({ iterator: () -> reactions.iterator() }));
 			Assert.isTrue(reactions.exists(key));
 			Assert.equals(1, reactions.get(key).length);