diff options
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_ |