1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

tests: small fix to avoid compilter error about unused result

This commit is contained in:
Steffen Vogel 2018-05-14 08:31:35 +02:00
parent c2d76829f7
commit 6002d8fa04

View file

@ -97,7 +97,10 @@ Test(advio, download_large)
char line[4096];
afgets(line, 4096, af);
char *f;
f = afgets(line, 4096, af);
cr_assert_not_null(f);
/* Check first line */
cr_assert_str_eq(line, "# VILLASnode signal params: type=mixed, values=4, rate=1000.000000, limit=100000, amplitude=1.000000, freq=1.000000\n");