Whitespace only, for readability

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/954/head
Michael Richters 4 years ago
parent bc14df9f8b
commit 470363f893
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -36,6 +36,7 @@ class SimHarness {
void Release(uint8_t row, uint8_t col); void Release(uint8_t row, uint8_t col);
void SetCycleTime(uint8_t millis); void SetCycleTime(uint8_t millis);
uint8_t CycleTime() const; uint8_t CycleTime() const;
private: private:
uint8_t millis_per_cycle_ = 1; uint8_t millis_per_cycle_ = 1;
}; };

@ -30,12 +30,12 @@
#include "testing/matchers.h" #include "testing/matchers.h"
#include "testing/VirtualDeviceTest.h" #include "testing/VirtualDeviceTest.h"
#define SETUP_GOOGLETEST() \ #define SETUP_GOOGLETEST() \
void executeTestFunction() { \ void executeTestFunction() { \
setup(); /* setup Kaleidoscope */ \ setup(); /* setup Kaleidoscope */ \
/* Turn off virtual_io's input. */ \ /* Turn off virtual_io's input. */ \
Kaleidoscope.device().keyScanner().setEnableReadMatrix(false); \ Kaleidoscope.device().keyScanner().setEnableReadMatrix(false); \
testing::InitGoogleTest(); \ testing::InitGoogleTest(); \
int result = RUN_ALL_TESTS(); \ int result = RUN_ALL_TESTS(); \
exit(result); \ exit(result); \
} }

Loading…
Cancel
Save