fix: update meshcore client ref

ref:
This commit is contained in:
Janez T
2026-03-13 19:56:50 +01:00
parent 9d8594fe05
commit 13a729492f
4 changed files with 20 additions and 7 deletions

View File

@@ -65,5 +65,22 @@ void main() {
isNull,
);
});
test('private channels with same name do not block slot selection', () {
expect(
ConnectionProvider.isDuplicateChannelName(
requestedName: 'RPT_admins',
existingName: 'RPT_admins',
),
isFalse,
);
expect(
ConnectionProvider.firstAvailableChannelSlot(
occupiedIndices: {1, 2, 3},
maxChannels: 6,
),
4,
);
});
});
}