0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 07:31:03 +08:00

Problem: non-expressive test case name

Solution: rename to more meaningful name
This commit is contained in:
Simon Giesecke 2019-03-24 13:05:38 -04:00
parent 34999d5069
commit 8dc933f2ed

View File

@ -32,7 +32,7 @@
SETUP_TEARDOWN_TESTCONTEXT
void test_x ()
void test_conflate ()
{
const char *bind_to = "tcp://127.0.0.1:*";
size_t len = MAX_SOCKET_STRING;
@ -75,6 +75,6 @@ int main (int, char *[])
setup_test_environment ();
UNITY_BEGIN ();
RUN_TEST (test_x);
RUN_TEST (test_conflate);
return UNITY_END ();
}