From: Zeeshan Ali (Khattak) Date: Mon, 8 Nov 2010 20:52:23 +0000 (+0200) Subject: tests: Correct visibility of a constant X-Git-Tag: RYGEL_0_9_2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52df713921537596a3d463eb2c0d35d55e1f9b74;p=profile%2Fivi%2Frygel.git tests: Correct visibility of a constant --- diff --git a/tests/rygel-http-response-test.vala b/tests/rygel-http-response-test.vala index c280823..b15a30d 100644 --- a/tests/rygel-http-response-test.vala +++ b/tests/rygel-http-response-test.vala @@ -31,7 +31,7 @@ public errordomain Rygel.TestError { } public abstract class Rygel.HTTPResponseTest : GLib.Object { - private static const long MAX_BYTES = 1024; + protected static const long MAX_BYTES = 1024; protected HTTPServer server; protected HTTPClient client;