8023701: Fix badly named test

Reviewed-by: bpatel
This commit is contained in:
Jonathan Gibbons 2013-08-26 11:48:37 -07:00
parent 32a617d198
commit 041cadb78d
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,11 +29,11 @@
* @author jamieh * @author jamieh
* @library ../lib/ * @library ../lib/
* @build JavadocTester * @build JavadocTester
* @build TestNavagation * @build TestNavigation
* @run main TestNavagation * @run main TestNavigation
*/ */
public class TestNavagation extends JavadocTester { public class TestNavigation extends JavadocTester {
//Test information. //Test information.
private static final String BUG_ID = "4131628-4664607"; private static final String BUG_ID = "4131628-4664607";
@ -71,7 +71,7 @@ public class TestNavagation extends JavadocTester {
* @param args the array of command line arguments. * @param args the array of command line arguments.
*/ */
public static void main(String[] args) { public static void main(String[] args) {
TestNavagation tester = new TestNavagation(); TestNavigation tester = new TestNavigation();
run(tester, ARGS, TEST, NEGATED_TEST); run(tester, ARGS, TEST, NEGATED_TEST);
tester.printSummary(); tester.printSummary();
} }