Skip to content
Snippets Groups Projects
Commit 9162f751 authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #10896 from ctiller/sbtest

Fix bogus asserts
parents 3d88269c 7ef85e5a
No related branches found
No related tags found
No related merge requests found
......@@ -115,8 +115,8 @@ void test_slice_buffer_move_first() {
grpc_slice_buffer_move_first(&src, 2, &dst);
src_len -= 2;
dst_len += 2;
GPR_ASSERT(src.length == src.length);
GPR_ASSERT(dst.length == dst.length);
GPR_ASSERT(src.length == src_len);
GPR_ASSERT(dst.length == dst_len);
}
int main(int argc, char **argv) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment