@@ -30,25 +30,25 @@ describe('CairoUint256 class test', () => {
3030 test ( 'constructor 2 should throw out of bounds' , ( ) => {
3131 expect ( ( ) => {
3232 new CairoUint256 ( UINT_256_LOW_MIN - 1n , 1000 ) ;
33- } ) . toThrow ( 'low is our of range UINT_256_LOW_MIN - UINT_256_LOW_MAX' ) ;
33+ } ) . toThrow ( 'low is out of range UINT_256_LOW_MIN - UINT_256_LOW_MAX' ) ;
3434 } ) ;
3535
3636 test ( 'constructor 2 should throw out of bounds' , ( ) => {
3737 expect ( ( ) => {
3838 new CairoUint256 ( UINT_256_LOW_MAX + 1n , 1000 ) ;
39- } ) . toThrow ( 'low is our of range UINT_256_LOW_MIN - UINT_256_LOW_MAX' ) ;
39+ } ) . toThrow ( 'low is out of range UINT_256_LOW_MIN - UINT_256_LOW_MAX' ) ;
4040 } ) ;
4141
4242 test ( 'constructor 2 should throw out of bounds' , ( ) => {
4343 expect ( ( ) => {
4444 new CairoUint256 ( 1000 , UINT_256_HIGH_MIN - 1n ) ;
45- } ) . toThrow ( 'high is our of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
45+ } ) . toThrow ( 'high is out of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
4646 } ) ;
4747
4848 test ( 'constructor 2 should throw out of bounds' , ( ) => {
4949 expect ( ( ) => {
5050 new CairoUint256 ( 1000 , UINT_256_HIGH_MAX + 1n ) ;
51- } ) . toThrow ( 'high is our of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
51+ } ) . toThrow ( 'high is out of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
5252 } ) ;
5353
5454 test ( 'constructor 3 ({low, high})' , ( ) => {
@@ -59,7 +59,7 @@ describe('CairoUint256 class test', () => {
5959 test ( 'constructor 3 should throw out of bounds' , ( ) => {
6060 expect ( ( ) => {
6161 new CairoUint256 ( { low : 1000 , high : UINT_256_HIGH_MAX + 1n } ) ;
62- } ) . toThrow ( 'high is our of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
62+ } ) . toThrow ( 'high is out of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX' ) ;
6363 } ) ;
6464
6565 test ( 'validate should throw on < UINT_256_MIN' , ( ) => {
0 commit comments