Skip to content

Commit

Permalink
[5378] Added missing line break
Browse files Browse the repository at this point in the history
  • Loading branch information
fxdupont committed Jun 11, 2018
1 parent c7559d5 commit 50c308d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/dhcpsrv/tests/srv_config_unittest.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2014-2017 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014-2018 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down Expand Up @@ -503,7 +503,8 @@ TEST_F(SrvConfigTest, unparse) {
defaults += conf.getCfgExpiration()->toElement()->str() + ",\n";
defaults += "\"lease-database\": { \"type\": \"memfile\" },\n";
defaults += "\"hooks-libraries\": [ ],\n";
defaults += "\"dhcp-ddns\": \n"; defaults += conf.getD2ClientConfig()->toElement()->str() + ",\n";
defaults += "\"dhcp-ddns\": \n";
defaults += conf.getD2ClientConfig()->toElement()->str() + ",\n";

std::string defaults4 = "\"echo-client-id\": true,\n";
defaults4 += "\"shared-networks\": [ ],\n";
Expand Down

0 comments on commit 50c308d

Please sign in to comment.