From 852cf6de5600f1fad2f2c66193a24d077403c45c Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Fri, 30 Aug 2019 16:16:10 -0400 Subject: [PATCH] tests: Correct includes ordering. Spotted by korli. --- .../kernel/partitioning_systems/PartitioningSystemsTest.cpp | 4 ++-- .../device_manager/playground/specific_video_driver.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/tests/add-ons/kernel/partitioning_systems/PartitioningSystemsTest.cpp b/src/tests/add-ons/kernel/partitioning_systems/PartitioningSystemsTest.cpp index cca906eaa7..2b72151508 100644 --- a/src/tests/add-ons/kernel/partitioning_systems/PartitioningSystemsTest.cpp +++ b/src/tests/add-ons/kernel/partitioning_systems/PartitioningSystemsTest.cpp @@ -8,9 +8,9 @@ #include #include #include -#include -#include #include +#include +#include #include #include diff --git a/src/tests/system/kernel/device_manager/playground/specific_video_driver.cpp b/src/tests/system/kernel/device_manager/playground/specific_video_driver.cpp index 5d445ac1ff..0ab60b4c98 100644 --- a/src/tests/system/kernel/device_manager/playground/specific_video_driver.cpp +++ b/src/tests/system/kernel/device_manager/playground/specific_video_driver.cpp @@ -6,9 +6,10 @@ #include "bus.h" +#include + #include #include -#include #define DRIVER_MODULE_NAME "drivers/graphics/specific_driver/driver_v1"