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 SetCycleTime(uint8_t millis);
uint8_t CycleTime() const;
private:
uint8_t millis_per_cycle_ = 1;
};

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

Loading…
Cancel
Save