mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-09-19 17:50:12 +00:00
10 lines
284 B
Go
10 lines
284 B
Go
package controller
|
|
|
|
import "testing"
|
|
|
|
func TestTerminalWebSocketInputLimitAllowsBoundedPaste(t *testing.T) {
|
|
if terminalWebSocketInputLimit != 512*1024+64 {
|
|
t.Fatalf("terminal WebSocket input limit = %d, want 512 KiB plus control-byte allowance", terminalWebSocketInputLimit)
|
|
}
|
|
}
|