You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by me...@apache.org on 2015/06/02 10:42:48 UTC

[2/3] mesos git commit: Fixed line length error.

Fixed line length error.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/73e61865
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/73e61865
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/73e61865

Branch: refs/heads/master
Commit: 73e6186564238339b33847b3a4265623f839a911
Parents: e1027ef
Author: Adam B <ad...@mesosphere.io>
Authored: Tue Jun 2 00:53:55 2015 -0700
Committer: Adam B <ad...@mesosphere.io>
Committed: Tue Jun 2 00:53:55 2015 -0700

----------------------------------------------------------------------
 src/tests/resources_tests.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/73e61865/src/tests/resources_tests.cpp
----------------------------------------------------------------------
diff --git a/src/tests/resources_tests.cpp b/src/tests/resources_tests.cpp
index b4a9bbf..4952e1b 100644
--- a/src/tests/resources_tests.cpp
+++ b/src/tests/resources_tests.cpp
@@ -230,7 +230,8 @@ TEST(ResourcesTest, PrintingExtendedAttributes)
   stream.str("");
   disk.mutable_reservation()->set_principal("hdfs-1234-4321");
   stream << disk;
-  EXPECT_EQ(stream.str(), "disk(alice, hdfs-1234-4321)[hadoop:/hdfs:/data:rw]:1");
+  EXPECT_EQ(stream.str(),
+            "disk(alice, hdfs-1234-4321)[hadoop:/hdfs:/data:rw]:1");
 }