minor: test, support larger page sizes in cache test

This commit is contained in:
Peter Andersson
2016-07-31 11:06:51 +02:00
parent 6f288013b1
commit 55c0ff48e7
+2 -2
View File
@@ -769,8 +769,8 @@ TEST(write_cache)
{
int res;
spiffs_file fd;
u8_t buf[1024];
u8_t fbuf[1024];
u8_t buf[1024*8];
u8_t fbuf[1024*8];
res = test_create_file("f");
TEST_CHECK(res >= 0);
fd = SPIFFS_open(FS, "f", SPIFFS_RDWR, 0);