tests: Correct visibility of a constant
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 8 Nov 2010 20:52:23 +0000 (22:52 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 8 Nov 2010 20:52:23 +0000 (22:52 +0200)
tests/rygel-http-response-test.vala

index c280823..b15a30d 100644 (file)
@@ -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;