[WIFI-5112] Changing associatedAccessSsidProfileIds to Set<Long>

This commit is contained in:
ralphlee
2021-10-26 14:37:14 -04:00
parent 40ea53f87c
commit 014bfa4189

View File

@@ -104,7 +104,7 @@ public class OvsdbDaoTestUtilities {
((PasspointProfile) passpointHotspotConfig.getDetails()).setOsuSsidProfileId(profileSsidOpen.getId());
profileSsidPsk.getChildProfileIds().add(passpointHotspotConfig.getId());
((PasspointProfile) passpointHotspotConfig.getDetails())
.setAssociatedAccessSsidProfileIds(List.of(profileSsidPsk.getId()));
.setAssociatedAccessSsidProfileIds(Set.of(profileSsidPsk.getId()));
return passpointHotspotConfig;
}