aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat/tests
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-09 17:31:58 +0000
committermat <github@matdoes.dev>2021-12-09 17:31:58 +0000
commit1637e23c6c96feb30d09e472692387621ceb2cce (patch)
treeba3370151c041dd5ead10507344c15dc97eb06ec /minecraft-chat/tests
parent577c2aa5444db727c23ceae565a8648d6f6a41f4 (diff)
downloadazalea-drasl-1637e23c6c96feb30d09e472692387621ceb2cce.tar.xz
fix formatters
Diffstat (limited to 'minecraft-chat/tests')
-rw-r--r--minecraft-chat/tests/integration_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/minecraft-chat/tests/integration_test.rs b/minecraft-chat/tests/integration_test.rs
index 0574861b..54426ed2 100644
--- a/minecraft-chat/tests/integration_test.rs
+++ b/minecraft-chat/tests/integration_test.rs
@@ -12,5 +12,5 @@ fn test() {
)
.unwrap();
let component = Component::new(&j).unwrap();
- assert_eq!(component.to_ansi(None), "\x1b[38;2;255;85;85mhello\x1b[m");
+ assert_eq!(component.to_ansi(None), "\x1b[1m\x1b[38;2;255;85;85mhello\x1b[m");
}