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
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

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