diff options
author | Mark Wells <mark@freeside.biz> | 2012-09-29 16:36:46 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-09-29 16:36:46 -0700 |
commit | 33beebf4cb42eba3e1dd868ad5e0af102de961da (patch) | |
tree | 860712543dcc74ff2402a4ed8d73e8cd553e62d4 /rt/t/api/searchbuilder.t | |
parent | 7ac86daf67b0a95153b736d5811f9050363f6553 (diff) |
update address standardization for cust_location changes
Diffstat (limited to 'rt/t/api/searchbuilder.t')
-rw-r--r-- | rt/t/api/searchbuilder.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rt/t/api/searchbuilder.t b/rt/t/api/searchbuilder.t index cb118906c..8562bfc2b 100644 --- a/rt/t/api/searchbuilder.t +++ b/rt/t/api/searchbuilder.t @@ -15,7 +15,7 @@ ok (require RT::SearchBuilder); { use_ok('RT::Queues'); -ok(my $queues = RT::Queues->new($RT::SystemUser), 'Created a queues object'); +ok(my $queues = RT::Queues->new(RT->SystemUser), 'Created a queues object'); ok( $queues->UnLimit(),'Unlimited the result set of the queues object'); my $items = $queues->ItemsArrayRef(); my @items = @{$items}; @@ -37,4 +37,3 @@ is_deeply(\@items_ids, \@sorted_ids, "ItemsArrayRef sorts alphabetically by name } -1; |