Browse Source

fixed names of test functions for cow_date:rfc2109/1

Andrei Nesterov 8 years ago
parent
commit
8d9370f81f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/cow_date.erl

+ 3 - 3
src/cow_date.erl

@@ -222,17 +222,17 @@ rfc2109_test_() ->
 	],
 	[{R, fun() -> R = rfc2109(D) end} || {R, D} <- Tests].
 
-horse_rfc2019_20130101_000000() ->
+horse_rfc2109_20130101_000000() ->
 	horse:repeat(100000,
 		rfc2109({{2013, 1, 1}, {0, 0, 0}})
 	).
 
-horse_rfc2019_20131231_235959() ->
+horse_rfc2109_20131231_235959() ->
 	horse:repeat(100000,
 		rfc2109({{2013, 12, 31}, {23, 59, 59}})
 	).
 
-horse_rfc2019_12340506_070809() ->
+horse_rfc2109_12340506_070809() ->
 	horse:repeat(100000,
 		rfc2109({{1234, 5, 6}, {7, 8, 9}})
 	).