Skip to content

Commit

Permalink
trying to fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruin-NR committed Jan 10, 2024
1 parent 4fa0b18 commit 1394872
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ - (unsigned long long)folderSize:(NSString *)folderPath {
}

-(void) testOfflineStorage {
[self.offlineStorage setMaxOfflineStorageSize:100];
NSData *data = [NRMAFakeDataHelper makeDataDictionary:1000];

XCTAssertTrue([self.offlineStorage persistDataToDisk:data]);
Expand All @@ -58,7 +59,7 @@ -(void) testOfflineStorage {
XCTAssertEqualObjects(data, savedData[0]);
}

-(void) testMaxOfflineStorageSize {
-(void) testOfflineStorageMaxSize {
[self.offlineStorage setMaxOfflineStorageSize:1];
NSData *data = [NRMAFakeDataHelper makeDataDictionary:5000];

Expand Down

0 comments on commit 1394872

Please sign in to comment.