setting primary values

fb-makefile
Claudius Holeksa 2022-01-08 18:14:30 +01:00
parent 4c9a7a080a
commit eadfd246a8
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ SAW_TEST("Io Socket Pair"){
uint8_t buffer_out[3] = {1,2,3};
sp.stream[0]->write(buffer_out,3);
uint8_t buffer_in[3];
uint8_t buffer_in[3] = {0,0,0};
sp.stream[1]->read(buffer_in, 3);
SAW_EXPECT(buffer_in[0] == 1, "Element 1 failed");