[rygel] tests: Keep check methods private



commit 7e24a2e525ae69f53b5dec858e2431f0ead2c5f5
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Mon Mar 22 15:33:57 2010 +0200

    tests: Keep check methods private

 tests/rygel-http-byte-seek-test.vala |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tests/rygel-http-byte-seek-test.vala b/tests/rygel-http-byte-seek-test.vala
index b7d7032..cf2b0c2 100644
--- a/tests/rygel-http-byte-seek-test.vala
+++ b/tests/rygel-http-byte-seek-test.vala
@@ -97,25 +97,25 @@ private class Rygel.HTTPByteSeekTest : GLib.Object {
         this.test_start_stop_seek ();
     }
 
-    public void test_no_seek () throws HTTPSeekError {
+    private void test_no_seek () throws HTTPSeekError {
         var request = new HTTPGet ();
 
         this.test_seek (request, 0, request.item.size - 1);
     }
 
-    public void test_start_only_seek () throws HTTPSeekError {
+    private void test_start_only_seek () throws HTTPSeekError {
         var request = new HTTPGet.seek_start (128);
 
         this.test_seek (request, 128, request.item.size - 1);
     }
 
-    public void test_stop_only_seek () throws HTTPSeekError {
+    private void test_stop_only_seek () throws HTTPSeekError {
         var request = new HTTPGet.seek_stop (128);
 
         this.test_seek (request, 0, 128);
     }
 
-    public void test_start_stop_seek () throws HTTPSeekError {
+    private void test_start_stop_seek () throws HTTPSeekError {
         var request = new HTTPGet.seek_start_stop (128, 256);
 
         this.test_seek (request, 128, 256);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]