mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2f4027d542
commit
d4717ee469
1 changed files with 2 additions and 2 deletions
|
@ -25,9 +25,9 @@ int main()
|
|||
cal = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];
|
||||
|
||||
[cal setFirstWeekday: 3];
|
||||
PASS([cal firstWeekday] == 3, "-firstWeekDay returns the correct day");
|
||||
PASS([cal firstWeekday] == 3, "-firstWeekday returns the correct day");
|
||||
[cal setFirstWeekday: 1];
|
||||
PASS([cal firstWeekday] == 1, "-setFirstWeekDay: works");
|
||||
PASS([cal firstWeekday] == 1, "-setFirstWeekday: works");
|
||||
|
||||
[cal setMinimumDaysInFirstWeek: 1];
|
||||
PASS([cal minimumDaysInFirstWeek] == 1,
|
||||
|
|
Loading…
Reference in a new issue