Skip to content

Commit

Permalink
Make clang happy
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Dec 10, 2021
1 parent 7e1cdf6 commit 0539db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testoauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class OAuthTestCase : public QObject
return this->statusPhpReply(op, req);
}
OC_ASSERT(device);
OC_ASSERT(device->bytesAvailable() > 0); // OAuth2 always sends around POST data.
OC_ASSERT(device && device->bytesAvailable() > 0); // OAuth2 always sends around POST data.
return this->tokenReply(op, req);
});

Expand Down

0 comments on commit 0539db8

Please sign in to comment.