Fix typo in test comment

This commit is contained in:
Fred Kiefer 2022-06-19 16:49:47 +02:00
parent 34423da47e
commit 3fcd2e704f
5 changed files with 10 additions and 10 deletions

View file

@ -94,7 +94,7 @@ int main(int argc, char **argv)
CGFloat ts[6];
int passed = 1;
START_SET("NView GNUstep bounds_scale")
START_SET("NSView GNUstep bounds_scale")
NS_DURING
{
@ -201,7 +201,7 @@ int main(int argc, char **argv)
pass(passed,"NSView -scaleUnitSquareToSize works");
testHopeful = NO;
END_SET("NView GNUstep bounds_scale")
END_SET("NSView GNUstep bounds_scale")
DESTROY(arp);
return 0;

View file

@ -97,7 +97,7 @@ int main(int argc, char **argv)
NSView *view1,*view2;
int passed=1;
START_SET("NView GNUstep converRect")
START_SET("NSView GNUstep converRect")
NS_DURING
{
@ -142,7 +142,7 @@ int main(int argc, char **argv)
pass(passed,"NSView -convertRect:fromView: and -convertRect:toView: work");
END_SET("NView GNUstep converRect")
END_SET("NSView GNUstep converRect")
DESTROY(arp);
return 0;

View file

@ -54,7 +54,7 @@ int main(int argc, char **argv)
NSView *view1;
int passed = 1;
START_SET("NView GNUstep frame_bounds")
START_SET("NSView GNUstep frame_bounds")
NS_DURING
{
@ -122,7 +122,7 @@ int main(int argc, char **argv)
pass(passed,"NSView -frame and -bounds work");
END_SET("NView GNUstep frame_bounds")
END_SET("NSView GNUstep frame_bounds")
DESTROY(arp);
return 0;

View file

@ -18,7 +18,7 @@ int main(int argc, char **argv)
NSView *view;
int passed;
START_SET("NView GNUstep frame_rotation")
START_SET("NSView GNUstep frame_rotation")
NS_DURING
{
@ -66,7 +66,7 @@ int main(int argc, char **argv)
pass(passed,"-frameRotation/-setFrameRotation work");
END_SET("NView GNUstep frame_rotation")
END_SET("NSView GNUstep frame_rotation")
DESTROY(arp);
return 0;

View file

@ -30,7 +30,7 @@ int main(int argc, char **argv)
NSView *v=[[NSView alloc] initWithFrame: NSMakeRect(0,0,100,100)];
[cv setDocumentView: v];
START_SET("NView GNUstep scrollRectToVisible")
START_SET("NSView GNUstep scrollRectToVisible")
NS_DURING
{
@ -97,7 +97,7 @@ int main(int argc, char **argv)
[v scrollRectToVisible: NSMakeRect(15,15,5,5)];
TEST(NSMakeRect(10,10,10,10),"12");
END_SET("NView GNUstep scrollRectToVisible")
END_SET("NSView GNUstep scrollRectToVisible")
DESTROY(arp);