Skip to content

Commit

Permalink
lowercase test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Dec 22, 2022
1 parent dbf7c8e commit 49a9103
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tiered_cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func createGenericTieredCacheHandler(val string, lastModified string) func(http.
}

func TestGetTieredCache(t *testing.T) {
t.Run("Can identify when Smart Tiered Cache", func(t *testing.T) {
t.Run("can identify when Smart Tiered Cache", func(t *testing.T) {
t.Run("is disabled", func(t *testing.T) {
setup()
defer teardown()
Expand Down Expand Up @@ -131,7 +131,7 @@ func TestGetTieredCache(t *testing.T) {
})
})

t.Run("Can identify when Generic Tiered Cache", func(t *testing.T) {
t.Run("can identify when generic tiered cache", func(t *testing.T) {
t.Run("is disabled", func(t *testing.T) {
setup()
defer teardown()
Expand Down Expand Up @@ -177,8 +177,8 @@ func TestGetTieredCache(t *testing.T) {
})
})

t.Run("Determines the latest Last Modified when", func(t *testing.T) {
t.Run("Smart Tiered Cache zone setting does not exist", func(t *testing.T) {
t.Run("determines the latest last modified when", func(t *testing.T) {
t.Run("smart tiered cache zone setting does not exist", func(t *testing.T) {
setup()
defer teardown()

Expand Down Expand Up @@ -223,7 +223,7 @@ func TestGetTieredCache(t *testing.T) {
}
})

t.Run("Smart Tiered Cache was modified more recently", func(t *testing.T) {
t.Run("smart tiered cache was modified more recently", func(t *testing.T) {
setup()
defer teardown()

Expand All @@ -249,7 +249,7 @@ func TestGetTieredCache(t *testing.T) {
}

func TestSetTieredCache(t *testing.T) {
t.Run("Can enable tiered caching", func(t *testing.T) {
t.Run("can enable tiered caching", func(t *testing.T) {
t.Run("using smart caching", func(t *testing.T) {
setup()
defer teardown()
Expand Down Expand Up @@ -297,7 +297,7 @@ func TestSetTieredCache(t *testing.T) {
}

func TestDeleteTieredCache(t *testing.T) {
t.Run("Can disable tiered caching", func(t *testing.T) {
t.Run("can disable tiered caching", func(t *testing.T) {
setup()
defer teardown()

Expand Down

0 comments on commit 49a9103

Please sign in to comment.