Author: rhuijben
Date: Sat Oct 17 15:31:58 2015
New Revision: 1709187

URL: http://svn.apache.org/viewvc?rev=1709187&view=rev
Log:
* serf-dev/dev/test/test_buckets.c
  (test_http2_unframe_buckets): Following up on r1709185, remove unneeded
    final argument that was somehow ignored by my compiler.

Modified:
    serf/trunk/test/test_buckets.c

Modified: serf/trunk/test/test_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/test_buckets.c?rev=1709187&r1=1709186&r2=1709187&view=diff
==============================================================================
--- serf/trunk/test/test_buckets.c (original)
+++ serf/trunk/test/test_buckets.c Sat Oct 17 15:31:58 2015
@@ -1802,8 +1802,8 @@ static void test_http2_unframe_buckets(C
                                                           &frame_type,
                                                           &flags));
     CuAssertIntEquals(tc, 12, payload_len);
-    CuAssertIntEquals(tc, 0, stream_id, 0);
-    CuAssertIntEquals(tc, 4, frame_type, 4);
+    CuAssertIntEquals(tc, 0, stream_id);
+    CuAssertIntEquals(tc, 4, frame_type);
     CuAssertIntEquals(tc, 0, flags);
   }
 


Reply via email to