добавил новые типы связи - тоесть возможность добавлять убирать друга, контакт или подписку  (и тесты и всё работает)
This commit is contained in:
AidarKC
2026-01-06 00:24:24 +03:00
parent 94777c58c6
commit 7ba333bf6c
2 changed files with 77 additions and 9 deletions
@@ -236,6 +236,16 @@ public class IT_03_AddBlock_NoAuth {
new byte[32]
), t);
// 6) USER2: Connection (UNFRIEND -> USER1) — USER2 больше не друг USER1
if (TestConfig.DEBUG()) TestLog.stepTitle("USER2: Connection (UNFRIEND -> USER1)");
sender2.send(new ConnectionBody(
ConnectionBody.SUB_UNFRIEND,
TestConfig.LOGIN(), // to_login (USER1)
TestConfig.BCH_NAME(), // toBch (USER1 chain)
0,
new byte[32]
), t);
TestLog.pass("IT_03_AddBlock_NoAuth (combined): OK");
}