[folks] Rename the contact-properties test.



commit eed38d45e206fae39e1f64a3514bc2e03c8bb44d
Author: Travis Reitter <travis reitter collabora co uk>
Date:   Wed Oct 13 14:06:35 2010 -0700

    Rename the contact-properties test.

 tests/telepathy/Makefile.am                        |    6 +++---
 ...-properties.vala => individual-properties.vala} |    8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/tests/telepathy/Makefile.am b/tests/telepathy/Makefile.am
index 28580a8..0f53aed 100644
--- a/tests/telepathy/Makefile.am
+++ b/tests/telepathy/Makefile.am
@@ -45,7 +45,7 @@ VALAFLAGS += \
 noinst_PROGRAMS = \
 	persona-store-capabilities \
 	individual-retrieval \
-	contact-properties \
+	individual-properties \
 	$(NULL)
 
 TESTS = $(addprefix test-,$(noinst_PROGRAMS))
@@ -58,8 +58,8 @@ individual_retrieval_SOURCES = \
 	individual-retrieval.vala \
 	$(NULL)
 
-contact_properties_SOURCES = \
-	contact-properties.vala \
+individual_properties_SOURCES = \
+	individual-properties.vala \
 	$(NULL)
 
 CLEANFILES = \
diff --git a/tests/telepathy/contact-properties.vala b/tests/telepathy/individual-properties.vala
similarity index 98%
rename from tests/telepathy/contact-properties.vala
rename to tests/telepathy/individual-properties.vala
index 2013868..8f969e1 100644
--- a/tests/telepathy/contact-properties.vala
+++ b/tests/telepathy/individual-properties.vala
@@ -5,7 +5,7 @@ using Tpf;
 using Folks;
 using Gee;
 
-public class ContactPropertiesTests : Folks.TestCase
+public class IndividualPropertiesTests : Folks.TestCase
 {
   private DBusDaemon daemon;
   private TpTest.Account account;
@@ -16,9 +16,9 @@ public class ContactPropertiesTests : Folks.TestCase
   private string object_path;
   private string individual_id_prefix = "telepathy:protocol:";
 
-  public ContactPropertiesTests ()
+  public IndividualPropertiesTests ()
     {
-      base ("ContactProperties");
+      base ("IndividualProperties");
 
       this.add_test ("individual properties",
           this.test_individual_properties);
@@ -335,7 +335,7 @@ public int main (string[] args)
   Test.init (ref args);
 
   TestSuite root = TestSuite.get_root ();
-  root.add_suite (new ContactPropertiesTests ().get_suite ());
+  root.add_suite (new IndividualPropertiesTests ().get_suite ());
 
   Test.run ();
 



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