mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2025-01-30 20:21:50 +01:00
Add missing future join call to storage test
This commit is contained in:
parent
9f4082ca0b
commit
8fbd79139d
@ -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");
|
||||||
|
Loading…
Reference in New Issue
Block a user