core: use std.testing.expectEqualStrings where appropriate (#8025)

This commit is contained in:
Mitchell Hashimoto
2025-07-22 13:40:25 -07:00
committed by GitHub
3 changed files with 9 additions and 9 deletions

View File

@ -1001,7 +1001,7 @@ test "name" {
var buf: [1024]u8 = undefined;
const font_name = try face.name(&buf);
try testing.expect(std.mem.eql(u8, font_name, "Menlo"));
try testing.expectEqualStrings(font_name, "Menlo");
}
test "emoji" {

View File

@ -95,7 +95,7 @@ test "ASCII" {
}
}
try testing.expect(std.mem.eql(u8, &out, "Hello, World!"));
try testing.expectEqualStrings(&out, "Hello, World!");
}
test "Well formed utf-8" {

View File

@ -1904,7 +1904,7 @@ test "OSC: get/set clipboard" {
const cmd = p.end(null).?;
try testing.expect(cmd == .clipboard_contents);
try testing.expect(cmd.clipboard_contents.kind == 's');
try testing.expect(std.mem.eql(u8, "?", cmd.clipboard_contents.data));
try testing.expectEqualStrings("?", cmd.clipboard_contents.data);
}
test "OSC: get/set clipboard (optional parameter)" {
@ -1918,7 +1918,7 @@ test "OSC: get/set clipboard (optional parameter)" {
const cmd = p.end(null).?;
try testing.expect(cmd == .clipboard_contents);
try testing.expect(cmd.clipboard_contents.kind == 'c');
try testing.expect(std.mem.eql(u8, "?", cmd.clipboard_contents.data));
try testing.expectEqualStrings("?", cmd.clipboard_contents.data);
}
test "OSC: get/set clipboard with allocator" {
@ -1933,7 +1933,7 @@ test "OSC: get/set clipboard with allocator" {
const cmd = p.end(null).?;
try testing.expect(cmd == .clipboard_contents);
try testing.expect(cmd.clipboard_contents.kind == 's');
try testing.expect(std.mem.eql(u8, "?", cmd.clipboard_contents.data));
try testing.expectEqualStrings("?", cmd.clipboard_contents.data);
}
test "OSC: clear clipboard" {
@ -1948,7 +1948,7 @@ test "OSC: clear clipboard" {
const cmd = p.end(null).?;
try testing.expect(cmd == .clipboard_contents);
try testing.expect(cmd.clipboard_contents.kind == 'c');
try testing.expect(std.mem.eql(u8, "", cmd.clipboard_contents.data));
try testing.expectEqualStrings("", cmd.clipboard_contents.data);
}
test "OSC: report pwd" {
@ -1961,7 +1961,7 @@ test "OSC: report pwd" {
const cmd = p.end(null).?;
try testing.expect(cmd == .report_pwd);
try testing.expect(std.mem.eql(u8, "file:///tmp/example", cmd.report_pwd.value));
try testing.expectEqualStrings("file:///tmp/example", cmd.report_pwd.value);
}
test "OSC: report pwd empty" {
@ -1973,7 +1973,7 @@ test "OSC: report pwd empty" {
for (input) |ch| p.next(ch);
const cmd = p.end(null).?;
try testing.expect(cmd == .report_pwd);
try testing.expect(std.mem.eql(u8, "", cmd.report_pwd.value));
try testing.expectEqualStrings("", cmd.report_pwd.value);
}
test "OSC: pointer cursor" {
@ -1986,7 +1986,7 @@ test "OSC: pointer cursor" {
const cmd = p.end(null).?;
try testing.expect(cmd == .mouse_shape);
try testing.expect(std.mem.eql(u8, "pointer", cmd.mouse_shape.value));
try testing.expectEqualStrings("pointer", cmd.mouse_shape.value);
}
test "OSC: longer than buffer" {