aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/resource_location.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/resource_location.rs')
-rwxr-xr-xazalea-core/src/resource_location.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-core/src/resource_location.rs b/azalea-core/src/resource_location.rs
index 61ae8a20..acca0c58 100755
--- a/azalea-core/src/resource_location.rs
+++ b/azalea-core/src/resource_location.rs
@@ -93,7 +93,8 @@ mod tests {
let mut buf = Vec::new();
ResourceLocation::new("minecraft:dirt")
.unwrap()
- .write_into(&mut buf)?;
+ .write_into(&mut buf)
+ .unwrap();
let mut buf = Cursor::new(buf);