diff options
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 { |