Skip to content

Commit

Permalink
v0.1.2.1
Browse files Browse the repository at this point in the history
fixed invalid expected outcome from test
  • Loading branch information
Localghost385 committed May 27, 2024
1 parent ab6e00c commit 7f85d17
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### v0.1.2.1
- minor bug fix to do with testing

### v0.1.2
- restructured main conversion code
- added testing
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glyphrs"
version = "0.1.2"
version = "0.1.2.1"
edition = "2021"
license = "MIT"
description = "A text art generator written in Rust"
Expand Down
2 changes: 1 addition & 1 deletion src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mod tests {
)]);

for font in get_fonts() {
let input = "test string";
let input = "test string 123";
let mut map_values: Vec<Vec<&str>> = vec![];
for c in input.chars() {
map_values.push(map_search(c, &font));
Expand Down

0 comments on commit 7f85d17

Please sign in to comment.