| Index: mojo/public/tests/bindings/array_unittest.cc
|
| diff --git a/mojo/public/tests/bindings_array_unittest.cc b/mojo/public/tests/bindings/array_unittest.cc
|
| similarity index 93%
|
| rename from mojo/public/tests/bindings_array_unittest.cc
|
| rename to mojo/public/tests/bindings/array_unittest.cc
|
| index 7a776b08d820d5432ba2413e4fe5a4cc7fbb410a..bb46c67aaddff447ff5c642b3477c775f0c80aa9 100644
|
| --- a/mojo/public/tests/bindings_array_unittest.cc
|
| +++ b/mojo/public/tests/bindings/array_unittest.cc
|
| @@ -3,14 +3,14 @@
|
| // found in the LICENSE file.
|
|
|
| #include "mojo/public/bindings/lib/array.h"
|
| -#include "mojo/public/tests/simple_bindings_support.h"
|
| +#include "mojo/public/tests/bindings/simple_bindings_support.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace mojo {
|
| namespace test {
|
|
|
| // Tests that basic Array operations work.
|
| -TEST(BindingsArrayTest, Basic) {
|
| +TEST(ArrayTest, Basic) {
|
| SimpleBindingsSupport bindings_support;
|
|
|
| // 8 bytes for the array, with 8 bytes left over for elements.
|
| @@ -33,7 +33,7 @@ TEST(BindingsArrayTest, Basic) {
|
|
|
| // Tests that basic Array<bool> operations work, and that it's packed into 1
|
| // bit per element.
|
| -TEST(BindingsArrayTest, Bool) {
|
| +TEST(ArrayTest, Bool) {
|
| SimpleBindingsSupport bindings_support;
|
|
|
| // 8 bytes for the array header, with 8 bytes left over for elements.
|
| @@ -56,7 +56,7 @@ TEST(BindingsArrayTest, Bool) {
|
| }
|
|
|
| // Tests that Array<Handle> supports transferring handles.
|
| -TEST(BindingsArrayTest, Handle) {
|
| +TEST(ArrayTest, Handle) {
|
| SimpleBindingsSupport bindings_support;
|
|
|
| AllocationScope scope;
|
|
|