EKF_ringbuffer: minor missing space for style

This commit is contained in:
Matthias Grob 2020-01-18 18:49:16 +01:00 committed by Daniel Agar
parent 26125c245d
commit 950e75e484

View File

@ -155,6 +155,6 @@ TEST_F(EkfRingBufferTest, reallocateBuffer)
// WHEN: do another allocate call
_buffer->allocate(3);
// THEN: its length should update
EXPECT_EQ(3,_buffer->get_length());
EXPECT_EQ(3, _buffer->get_length());
}