fixing test
Some checks failed
test and deploy / Build Native (push) Failing after 10m2s
test and deploy / Build WASM (push) Successful in 10m34s
test and deploy / Package Container (push) Successful in 1m19s

This commit is contained in:
Andy Pack 2024-07-19 22:45:29 +01:00
parent a8b9f72ffc
commit 1df1472e20
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -840,8 +840,8 @@ impl Display for Board {
Occupied => write!(string, "{} ", self.cell(idx).occupant.unwrap().team), Occupied => write!(string, "{} ", self.cell(idx).occupant.unwrap().team),
Unplayable => write!(string, ". "), Unplayable => write!(string, ". "),
}; };
if let Err(err) = result { if let Err(_err) = result {
// log!("Error printing cell state, ({}, {}), {}", i, j, err); // log!("Error printing cell state, ({}, {}), {}", i, j, _err);
} }
} }
string.push('\n'); string.push('\n');