aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/entry_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/entry_test.go')
-rw-r--r--model/entry_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/model/entry_test.go b/model/entry_test.go
index 2f8c25d..8b92d3f 100644
--- a/model/entry_test.go
+++ b/model/entry_test.go
@@ -57,15 +57,15 @@ func TestValidateRange(t *testing.T) {
}
func TestGetOppositeDirection(t *testing.T) {
- if GetOppositeDirection("asc") != "desc" {
+ if OppositeDirection("asc") != "desc" {
t.Errorf(`The opposite direction of "asc" should be "desc"`)
}
- if GetOppositeDirection("desc") != "asc" {
+ if OppositeDirection("desc") != "asc" {
t.Errorf(`The opposite direction of "desc" should be "asc"`)
}
- if GetOppositeDirection("invalid") != "asc" {
+ if OppositeDirection("invalid") != "asc" {
t.Errorf(`An invalid direction should return "asc"`)
}
}