Skip to content

Commit

Permalink
Fix timeout in edgeset_test.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 219533560
  • Loading branch information
tensorflower-gardener committed Oct 31, 2018
1 parent 26376a4 commit 0f8f062
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tensorflow/core/graph/edgeset_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 0f8f062

Please sign in to comment.