diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 07:26:26 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 07:26:36 -0500 |
commit | 454864ec86ea3b7081bdb9e0a2f83d365d8e297e (patch) | |
tree | 65a0dcfc8bf2033137609e4d198f3ffde5b5eb4b /protocol/src/simple_bots.rs | |
parent | de26af72d526c8a6154d65c5ab6ec3f94244e2ba (diff) |
Fix clippy errors
Diffstat (limited to 'protocol/src/simple_bots.rs')
-rw-r--r-- | protocol/src/simple_bots.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/src/simple_bots.rs b/protocol/src/simple_bots.rs index 2c2832c..ed1cd14 100644 --- a/protocol/src/simple_bots.rs +++ b/protocol/src/simple_bots.rs @@ -104,7 +104,7 @@ mod tests { } fn mkcards(s: &str) -> Vec<Card> { - s.split(" ").map(mkcard).collect() + s.split(' ').map(mkcard).collect() } fn example_deal() -> Deal { |