fix(test): fix syntax error in the unit tests.
This commit is contained in:
parent
47a2a8528c
commit
839590348f
|
@ -479,12 +479,12 @@ TEST_F(BackendEnv, oldBackendInit) {
|
|||
|
||||
{
|
||||
SBackendWrapper *p = NULL;
|
||||
int32_t code = (SBackendWrapper *)streamBackendInit(path, 10, 10, &p);
|
||||
int32_t code = streamBackendInit(path, 10, 10, &p);
|
||||
streamBackendCleanup((void *)p);
|
||||
}
|
||||
{
|
||||
SBackendWrapper *p = NULL;
|
||||
int32_t code = (SBackendWrapper *)streamBackendInit(path, 10, 10, &p);
|
||||
int32_t code = streamBackendInit(path, 10, 10, &p);
|
||||
streamBackendCleanup((void *)p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue