diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-29 21:31:59 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-30 15:53:23 -0500 |
commit | 06c0e291182f20f207e4c914ae78d3f9ec16e074 (patch) | |
tree | 4bb41b0b0efead893d07e113d0b05ee23b738091 /libdeno/test.h | |
parent | 13582ff3f2478f2e2cafa3042fc6aa96ae5049c5 (diff) |
Fix cpplint
Diffstat (limited to 'libdeno/test.h')
-rw-r--r-- | libdeno/test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdeno/test.h b/libdeno/test.h index 91e7119e8..25ca93988 100644 --- a/libdeno/test.h +++ b/libdeno/test.h @@ -1,6 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -#ifndef TEST_H -#define TEST_H +#ifndef TEST_H_ +#define TEST_H_ #include "deno.h" #include "testing/gtest/include/gtest/gtest.h" @@ -8,4 +8,4 @@ extern deno_buf snapshot; // Loaded in libdeno/test.cc const deno_buf empty = {nullptr, 0, nullptr, 0}; -#endif // TEST_H +#endif // TEST_H_ |