diff options
| author | Austin Hellyer <[email protected]> | 2016-12-03 09:47:52 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-03 09:47:52 -0800 |
| commit | 9b86fa9da0dbe180165bcb024851d779bb483451 (patch) | |
| tree | 5c2874b6cbf8092f486df3ae2fc8c0ebd69b5e36 /tests | |
| parent | Make the default Colour value the actual default (diff) | |
| download | serenity-9b86fa9da0dbe180165bcb024851d779bb483451.tar.xz serenity-9b86fa9da0dbe180165bcb024851d779bb483451.zip | |
Tests exist
Diffstat (limited to 'tests')
| -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 fcf7463..be90cdb 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, 0); + assert_eq!(Colour::default().value, 0x99AAB5); } #[test] |