Skip to content

Commit

Permalink
FFM-10286 Store last auth time as a Long: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erdirowlands committed Dec 28, 2023
1 parent e38da57 commit 1899bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion force-app/test/FFAuthServiceCachedTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private class FFAuthServiceCachedTest {

// Ensure lastAuthTime gets cached
String lastAuthKey = FFCacheKeys.getCacheKey('test-sdk-key');
String lastAuth = config.cache.getLastAuthKey('lastAuth'+lastAuthKey);
Long lastAuth = config.cache.getLastAuthKey('lastAuth'+lastAuthKey);
// Just assert that the key is there. We can't verify the timestamp in the test.
System.assertNotEquals(lastAuth, null);
}
Expand Down

0 comments on commit 1899bfb

Please sign in to comment.