Skip to content

Commit 86c0331

Browse files
committed
fix: typo
1 parent a99e063 commit 86c0331

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

__tests__/parser_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ func parseResult(s string) string {
5454
}
5555
}
5656

57-
func TestParsePhotoIDFromUrl(t *testing.T) {
57+
func TestParsePhotoIDFromURL(t *testing.T) {
5858
for i, tCase := range photoUrls {
59-
result := lib.ParsePhotoIDFromUrl(tCase.data)
59+
result := lib.ParsePhotoIDFromURL(tCase.data)
6060

6161
if result != tCase.expected {
6262
t.Errorf("[%d] Expected \"%s\" received \"%s\"", i, tCase.expected, parseResult(result))

showcase.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
clear
3+
4+
./splash
5+
sleep 1
6+
./splash e --platform ghostty >"$HOME/.config/ghostty/themes/splash"
7+
echo "Reload your config in 2 seconds"
8+
sleep 2
9+
10+
neofetch

0 commit comments

Comments
 (0)