From 7009ab6fe868a506ba94b6342666cd83cd66fd6b Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 11 Mar 2015 16:31:56 +0100 Subject: [PATCH] Fixed indentation. --- test/Assembly.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/Assembly.cpp b/test/Assembly.cpp index eb76f1184..fbc8e47b5 100644 --- a/test/Assembly.cpp +++ b/test/Assembly.cpp @@ -105,11 +105,11 @@ BOOST_AUTO_TEST_CASE(location_test) shared_ptr n = make_shared("source"); AssemblyItems items = compileContract(sourceCode); vector locations = - vector(11, SourceLocation(2, 75, n)) + - vector(12, SourceLocation(20, 72, n)) + - vector{SourceLocation(42, 51, n), SourceLocation(65, 67, n)} + - vector(4, SourceLocation(58, 67, n)) + - vector(3, SourceLocation(20, 72, n)); + vector(11, SourceLocation(2, 75, n)) + + vector(12, SourceLocation(20, 72, n)) + + vector{SourceLocation(42, 51, n), SourceLocation(65, 67, n)} + + vector(4, SourceLocation(58, 67, n)) + + vector(3, SourceLocation(20, 72, n)); checkAssemblyLocations(items, locations); }