[Rt-commit] r15860 - in rt/branches/3.999-DANGEROUS: t/api

sunnavy at bestpractical.com sunnavy at bestpractical.com
Mon Sep 8 11:33:17 EDT 2008


Author: sunnavy
Date: Mon Sep  8 11:33:17 2008
New Revision: 15860

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/t/api/template.t

Log:
 r16545 at sunnavys-mb:  sunnavy | 2008-09-08 23:30:51 +0800
 a tiny fix because queue_obj is deprecated


Modified: rt/branches/3.999-DANGEROUS/t/api/template.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/api/template.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/api/template.t	Mon Sep  8 11:33:17 2008
@@ -14,7 +14,7 @@
 $t->create(name => "Foo", queue => 1);
 my $t2 = RT::Model::Template->new(current_user => RT->nobody);
 $t2->load($t->id);
-ok($t2->queue_obj->id, "Got the template's queue objet");
+ok($t2->queue->id, "Got the template's queue objet");
 
 
 


More information about the Rt-commit mailing list