You've already forked json-iterator
							
							
				mirror of
				https://github.com/json-iterator/go.git
				synced 2025-10-31 00:07:40 +02:00 
			
		
		
		
	any_tests: remove commented-out code
Found using https://go-critic.github.io/overview#commentedOutCode-ref
This commit is contained in:
		| @@ -82,10 +82,8 @@ func Test_read_float_to_any(t *testing.T) { | ||||
| 	should := require.New(t) | ||||
| 	any := jsoniter.WrapFloat64(12.3) | ||||
| 	anyFloat64 := float64(12.3) | ||||
| 	//negaAnyFloat64 := float64(-1.1) | ||||
| 	any2 := jsoniter.WrapFloat64(-1.1) | ||||
| 	should.Equal(float64(12.3), any.ToFloat64()) | ||||
| 	//should.Equal("12.3", any.ToString()) | ||||
| 	should.True(any.ToBool()) | ||||
| 	should.Equal(float32(anyFloat64), any.ToFloat32()) | ||||
| 	should.Equal(int(anyFloat64), any.ToInt()) | ||||
|   | ||||
| @@ -118,6 +118,4 @@ func Test_object_wrapper_any_get_all(t *testing.T) { | ||||
| 	should.Contains(any.Keys(), "Field1") | ||||
| 	should.Contains(any.Keys(), "Field2") | ||||
| 	should.NotContains(any.Keys(), "Field3") | ||||
|  | ||||
| 	//should.Contains(any.GetObject()["Field1"].GetArray()[0], 1) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user