Skip to content

Commit

Permalink
Use the shorter include path.
Browse files Browse the repository at this point in the history
Just gtest/gtest.h also works.

Signed-off-by: Thiago Farina <tfarina@chromium.org>
  • Loading branch information
tfarina committed Sep 21, 2013
1 parent 484e490 commit 4f873e4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tests/attribute.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include <stdlib.h>
#include <string.h>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"
#include "vector.h"

namespace {
Expand Down
2 changes: 1 addition & 1 deletion tests/char_ref.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include <stdio.h>
#include <string.h>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"
#include "utf8.h"

namespace {
Expand Down
2 changes: 1 addition & 1 deletion tests/parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

#include <string>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"

namespace {

Expand Down
2 changes: 1 addition & 1 deletion tests/string_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include <stdlib.h>
#include <string.h>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"
#include "util.h"

namespace {
Expand Down
2 changes: 1 addition & 1 deletion tests/string_piece.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#include <stdlib.h>
#include <string.h>

#include "gtest/gtest.h"
#include "parser.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"
#include "util.h"

namespace {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
#include <stdint.h>
#include <string>

#include "gtest/gtest.h"
#include "gumbo.h"
#include "parser.h"
#include "third_party/gtest/include/gtest/gtest.h"

inline std::string ToString(const GumboStringPiece& str) {
return std::string(str.data, str.length);
Expand Down
2 changes: 1 addition & 1 deletion tests/tokenizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

#include <stdio.h>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"

extern const char* kGumboTagNames[];

Expand Down
2 changes: 1 addition & 1 deletion tests/utf8.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
#include <string.h>

#include "error.h"
#include "gtest/gtest.h"
#include "gumbo.h"
#include "parser.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"

namespace {

Expand Down
2 changes: 1 addition & 1 deletion tests/vector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include <stdlib.h>
#include <string.h>

#include "gtest/gtest.h"
#include "test_utils.h"
#include "third_party/gtest/include/gtest/gtest.h"

namespace {

Expand Down

0 comments on commit 4f873e4

Please sign in to comment.