You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2016/11/21 19:05:30 UTC

[15/40] incubator-trafficcontrol git commit: fixed test data

fixed test data


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/2c877a8e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/2c877a8e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/2c877a8e

Branch: refs/heads/psql-rebase
Commit: 2c877a8ee1e6ae6c9e804abaee2d2d93acb89bf7
Parents: 804ee1b
Author: Dewayne Richardson <de...@apache.org>
Authored: Thu Nov 17 14:36:57 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Mon Nov 21 12:04:09 2016 -0700

----------------------------------------------------------------------
 traffic_ops/app/t/api/1.1/staticdns.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/2c877a8e/traffic_ops/app/t/api/1.1/staticdns.t
----------------------------------------------------------------------
diff --git a/traffic_ops/app/t/api/1.1/staticdns.t b/traffic_ops/app/t/api/1.1/staticdns.t
index 047a848..063d2bf 100644
--- a/traffic_ops/app/t/api/1.1/staticdns.t
+++ b/traffic_ops/app/t/api/1.1/staticdns.t
@@ -42,10 +42,10 @@ ok $t->post_ok( '/login', => form => { u => Test::TestHelper::ADMIN_USER, p => T
 
 $t->get_ok('/api/1.1/staticdnsentries.json?orderby=host')->status_is(200)->or( sub { diag $t->tx->res->content->asset->{content}; } )
 	->json_is( "/response/0/ttl", "3600" )->json_is( "/response/0/host", "AAAA_RECORD_HOST" )->json_is( "/response/0/cachegroup", "mid-northeast-group" )
-	->json_is( "/response/0/deliveryservice", "steering-ds1" )->json_is( "/response/0/address", "127.0.0.1" )->json_is( "/response/0/type", "AAAA_RECORD" )
+	->json_is( "/response/0/deliveryservice", "test-ds1" )->json_is( "/response/0/address", "127.0.0.1" )->json_is( "/response/0/type", "AAAA_RECORD" )
 
 	->json_is( "/response/2/ttl", "3600" )->json_is( "/response/2/host", "CNAME_HOST" )->json_is( "/response/2/cachegroup", "mid-northwest-group" )
-	->json_is( "/response/2/deliveryservice", "steering-ds2" )->json_is( "/response/2/address", "127.0.0.1" )->json_is( "/response/2/type", "CNAME_RECORD" );
+	->json_is( "/response/2/deliveryservice", "test-ds2" )->json_is( "/response/2/address", "127.0.0.1" )->json_is( "/response/2/type", "CNAME_RECORD" );
 
 ok $t->get_ok('/logout')->status_is(302)->or( sub { diag $t->tx->res->content->asset->{content}; } );
 $dbh->disconnect();