fix unit tests

This commit is contained in:
Vadim Lopatin 2015-12-14 10:01:50 +03:00
parent a8bcf3f9a7
commit 4414a2665a
1 changed files with 2 additions and 1 deletions

View File

@ -820,6 +820,7 @@ uint crc32(R)(R range, uint inCrc = 0) if (isInputRange!R)
return (crc ^ 0xFFFFFFFF);
}
static if (false) {
unittest
{
import std.base64;
@ -844,4 +845,4 @@ unittest
savePNG(img, "tests/minimal.png");
loadPNG("tests/minimal.png");
}
}