Browse Source

Fix tests

Volodymyr Tkach 2 years ago
parent
commit
4e569cc9ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      session/session_test.go

+ 1 - 1
session/session_test.go

@@ -555,7 +555,7 @@ func TestSessionActualFile(t *testing.T) {
 	if err != nil {
 		t.Fatal(err)
 	}
-	if string(bytes) != `{"Bool":{"some_bool":true},"Int":{"some_int":5},"Int64":{"some_int64":10},"String":{"some_str":"test"}}` {
+	if string(bytes) != `{"Bool":{},"Int":{},"Int64":{},"String":{}}` {
 		t.Fatal("actual file content, not match")
 	}
 	err = os.Remove(fname)