Skip to content

Commit 7ad4457

Browse files
author
Datadog Syncup Service
committed
Merge branch 'upstream-master'
2 parents 3086466 + 9498469 commit 7ad4457

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/jdk/jdk/jfr/tool/TestView.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ private static void testTableView(String recording) throws Throwable {
9191

9292
private static void testEventType(String recording) throws Throwable {
9393
OutputAnalyzer output = ExecuteHelper.jfr(
94-
"view", "--verbose", "--width", "300", "--cell-height", "100", "SystemGC", recording);
94+
"view", "--verbose", "--width", "300", "--cell-height", "100", "ThreadSleep", recording);
9595
// Verify title
96-
output.shouldContain("System GC");
96+
output.shouldContain("Thread Sleep");
9797
// Verify headings
98-
output.shouldContain("Invoked Concurrent");
98+
output.shouldContain("Sleep Time");
9999
// Verify verbose headings
100-
output.shouldContain("invokedConcurrent");
100+
output.shouldContain("time");
101101
// Verify thread value
102102
output.shouldContain(Thread.currentThread().getName());
103103
// Verify stack frame

test/jdk/sun/security/tools/keytool/PKCS12Passwd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public static void main(String[] args) throws Exception {
108108

109109
check("p12", "newpass", "newpass");
110110

111-
// Conversely, a JKS keystore can be laoded as a PKCS12, and it follows
111+
// Conversely, a JKS keystore can be loaded as a PKCS12, and it follows
112112
// PKCS12 rules that both passwords are changed at the same time and
113113
// some commands are rejected.
114114

0 commit comments

Comments
 (0)