diff options
| author | Austin Hellyer <[email protected]> | 2016-12-03 13:21:27 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-03 13:21:27 -0800 |
| commit | 61ca1ca1f2990131870b643edf77cc06bec9d7ff (patch) | |
| tree | 9738b4015af9625c9e15ae16f46d9f20f87c5d10 /tests/test_colour.rs | |
| parent | Derive Eq/Ord on Colour (diff) | |
| download | serenity-61ca1ca1f2990131870b643edf77cc06bec9d7ff.tar.xz serenity-61ca1ca1f2990131870b643edf77cc06bec9d7ff.zip | |
Make Member::colour() return an optional colour
Diffstat (limited to 'tests/test_colour.rs')
| -rw-r--r-- | tests/test_colour.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_colour.rs b/tests/test_colour.rs index be90cdb..fcf7463 100644 --- a/tests/test_colour.rs +++ b/tests/test_colour.rs @@ -39,7 +39,7 @@ fn get_tuple() { #[test] fn default() { - assert_eq!(Colour::default().value, 0x99AAB5); + assert_eq!(Colour::default().value, 0); } #[test] |