1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-22 14:12:48 +02:00

Add missing future join call to storage test

This commit is contained in:
Luck
2023-06-25 22:36:31 +01:00
parent 9f4082ca0b
commit 8fbd79139d

View File

@@ -134,7 +134,7 @@ public class StorageIntegrationTest {
// try to create / save a track // try to create / save a track
Track track = plugin.getStorage().createAndLoadTrack("example", CreationCause.INTERNAL).join(); Track track = plugin.getStorage().createAndLoadTrack("example", CreationCause.INTERNAL).join();
track.setGroups(ImmutableList.of("default", "test")); track.setGroups(ImmutableList.of("default", "test"));
plugin.getStorage().saveTrack(track); plugin.getStorage().saveTrack(track).join();
// try to create / save a user // try to create / save a user
UUID exampleUniqueId = UUID.fromString("c1d60c50-70b5-4722-8057-87767557e50d"); UUID exampleUniqueId = UUID.fromString("c1d60c50-70b5-4722-8057-87767557e50d");