From f3238e0df1f7121d0f91e215e77df4a2ab1f34e1 Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Sat, 22 May 2021 00:09:13 +0300 Subject: [PATCH] [#1837] fixed indentation --- src/bin/dhcp6/tests/vendor_opts_unittest.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/dhcp6/tests/vendor_opts_unittest.cc b/src/bin/dhcp6/tests/vendor_opts_unittest.cc index adcb27bf27..9439714344 100644 --- a/src/bin/dhcp6/tests/vendor_opts_unittest.cc +++ b/src/bin/dhcp6/tests/vendor_opts_unittest.cc @@ -100,8 +100,7 @@ public: // Now check that it contains requested option with the appropriate // content. - OptionPtr suboption( - response_vendor_options->getOption(option_)); + OptionPtr suboption(response_vendor_options->getOption(option_)); ASSERT_TRUE(suboption); vector binary_suboption = suboption->toBinary(false); string text(binary_suboption.begin(), binary_suboption.end());