You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mz...@apache.org on 2019/07/24 00:38:44 UTC

[mesos] branch master updated: Fixed a compilation issue in the allocator test.

This is an automated email from the ASF dual-hosted git repository.

mzhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 366f568  Fixed a compilation issue in the allocator test.
366f568 is described below

commit 366f568a54267167b82b10e9bb3a0e1a728aa9ea
Author: Meng Zhu <mz...@mesosphere.io>
AuthorDate: Tue Jul 23 17:28:40 2019 -0700

    Fixed a compilation issue in the allocator test.
---
 src/tests/allocator.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/allocator.cpp b/src/tests/allocator.cpp
index a73c069..ed46efd 100644
--- a/src/tests/allocator.cpp
+++ b/src/tests/allocator.cpp
@@ -37,7 +37,7 @@ Quota createQuota(const string& guarantees, const string& limits)
 
 Quota createQuota(const string& resources)
 {
-  return createQuota(guarantees, limits);
+  return createQuota(resources, resources);
 }