Fix timeout in edgeset_test.
PiperOrigin-RevId: 219533560
This commit is contained in:
parent
26376a4430
commit
0f8f062e89
@ -15,6 +15,7 @@ limitations under the License.
|
|||||||
|
|
||||||
#include "tensorflow/core/graph/edgeset.h"
|
#include "tensorflow/core/graph/edgeset.h"
|
||||||
|
|
||||||
|
#include <set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "tensorflow/core/graph/graph.h"
|
#include "tensorflow/core/graph/graph.h"
|
||||||
#include "tensorflow/core/platform/test.h"
|
#include "tensorflow/core/platform/test.h"
|
||||||
@ -55,7 +56,7 @@ class EdgeSetTest : public ::testing::Test {
|
|||||||
Edge nonexistent_;
|
Edge nonexistent_;
|
||||||
Edge* edges_;
|
Edge* edges_;
|
||||||
EdgeSet eset_;
|
EdgeSet eset_;
|
||||||
gtl::FlatSet<const Edge*> model_;
|
std::set<const Edge*> model_;
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
Loading…
Reference in New Issue
Block a user