Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Shoham Elias <[email protected]>
  • Loading branch information
shohamazon committed Feb 9, 2025
1 parent 3c89fd6 commit cf273f3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions glide-core/tests/test_socket_listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1303,12 +1303,12 @@ mod socket_listener {
request_type: RequestType::DBSize.into(),
},
CommandComponents {
args: vec!["maxmemory".to_string().into(), "1000".to_string().into()],
args: vec!["appendonly".to_string().into(), "no".to_string().into()],
args_pointer: false,
request_type: RequestType::ConfigSet.into(),
},
CommandComponents {
args: vec!["maxmemory".to_string().into()],
args: vec!["appendonly".to_string().into()],
args_pointer: false,
request_type: RequestType::ConfigGet.into(),
},
Expand All @@ -1332,8 +1332,10 @@ mod socket_listener {
Value::Int(2),
Value::Okay,
Value::Map(vec![(
Value::BulkString(vec![b'm', b'a', b'x', b'm', b'e', b'm', b'o', b'r', b'y']),
Value::BulkString(vec![b'1', b'0', b'0', b'0']),
Value::BulkString(vec![
b'a', b'p', b'p', b'e', b'n', b'd', b'o', b'n', b'l', b'y',
]),
Value::BulkString(vec![b'n', b'o']),
)]),
]),
);
Expand Down

0 comments on commit cf273f3

Please sign in to comment.