test/obex: fix test data

This commit is contained in:
Matthias Ringwald 2019-09-15 20:23:41 +02:00
parent 5e540b03a0
commit b43a2cb652

View File

@ -8,7 +8,7 @@
static const uint8_t service_uuid[] = {0xbb, 0x58, 0x2b, 0x40, 0x42, 0xc, 0x11, 0xdb, 0xb0, 0xde, 0x8, 0x0, 0x20, 0xc, 0x9a, 0x66};
static const uint8_t application_parameters[] = {0x29, 4, 0, 0, 0xFF, 0xFF};
static const char path_element[] = {'t','e','s','t'};
static const char path_element[] = "test";
static const uint8_t flags = 1 << 1;
static const uint16_t maximum_obex_packet_length = 0xFFFF;
static const uint32_t connection_id = 10;
@ -173,4 +173,4 @@ TEST(OBEX_MESSAGE_BUILDER, CreateSetPathWithName){
int main (int argc, const char * argv[]){
return CommandLineTestRunner::RunAllTests(argc, argv);
}
}