Fix subscribe test description

This commit is contained in:
Nick O'Leary 2015-08-28 23:13:31 +01:00
parent a181852893
commit fc02df2f6f

View File

@ -11,8 +11,6 @@ void callback(char* topic, byte* payload, unsigned int length) {
// handle message arrived // handle message arrived
} }
int test_subscribe_no_qos() { int test_subscribe_no_qos() {
IT("subscribe without qos defaults to 0"); IT("subscribe without qos defaults to 0");
ShimClient shimClient; ShimClient shimClient;
@ -78,7 +76,7 @@ int test_subscribe_not_connected() {
} }
int test_subscribe_invalid_qos() { int test_subscribe_invalid_qos() {
IT("subscribe fails when not connected"); IT("subscribe fails with invalid qos values");
ShimClient shimClient; ShimClient shimClient;
shimClient.setAllowConnect(true); shimClient.setAllowConnect(true);