diff options
Diffstat (limited to 'lib/stdlib/test/c_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/c_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/c_SUITE.erl b/lib/stdlib/test/c_SUITE.erl index 395372ebf0..0843fcc0de 100644 --- a/lib/stdlib/test/c_SUITE.erl +++ b/lib/stdlib/test/c_SUITE.erl @@ -153,7 +153,7 @@ memory(Config) when is_list(Config) -> "erlang:memory/[0,1] and c:memory/[0,1] not supported"} end. -% Help function for c_SUITE:memory/1 +%% Help function for c_SUITE:memory/1 mget(K, L) -> ?line {value,{K,V}} = lists:keysearch(K, 1, L), ?line test_v(c:memory(K)), % Check that c:memory/1 also accept this @@ -161,6 +161,6 @@ mget(K, L) -> % *not* the same as V). ?line test_v(V). -% Help function for c_SUITE:memory/1 +%% Help function for c_SUITE:memory/1 test_v(V) when is_integer(V) -> ?line V. |