dm: test: Fix nit with position of backslash

Line up this backslash with all the others.

Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/include/test/ut.h b/include/test/ut.h
index 85434d7..d176df5 100644
--- a/include/test/ut.h
+++ b/include/test/ut.h
@@ -104,7 +104,7 @@
 }
 
 /* Assert that a pointer is not an error pointer */
-#define ut_assertok_ptr(expr) {					\
+#define ut_assertok_ptr(expr) {						\
 	const void *val = (expr);					\
 									\
 	if (IS_ERR(val)) {						\