Fix timeout in edgeset_test.

PiperOrigin-RevId: 219533560
This commit is contained in:
A. Unique TensorFlower 2018-10-31 14:01:06 -07:00 committed by TensorFlower Gardener
parent 26376a4430
commit 0f8f062e89

View File

@ -15,6 +15,7 @@ limitations under the License.
#include "tensorflow/core/graph/edgeset.h"
#include <set>
#include <vector>
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/platform/test.h"
@ -55,7 +56,7 @@ class EdgeSetTest : public ::testing::Test {
Edge nonexistent_;
Edge* edges_;
EdgeSet eset_;
gtl::FlatSet<const Edge*> model_;
std::set<const Edge*> model_;
};
namespace {